Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(350)

Side by Side Diff: webrtc/base/constructormagic.h

Issue 1345433002: Add RTC_ prefix to contructormagic macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Formatting fix. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/bytebuffer.h ('k') | webrtc/base/criticalsection.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_BASE_CONSTRUCTORMAGIC_H_ 11 #ifndef WEBRTC_BASE_CONSTRUCTORMAGIC_H_
12 #define WEBRTC_BASE_CONSTRUCTORMAGIC_H_ 12 #define WEBRTC_BASE_CONSTRUCTORMAGIC_H_
13 13
14 // Undefine macros first, just in case. Some third-party includes have their own 14 #define RTC_DISALLOW_ASSIGN(TypeName) \
15 // version.
16
17 #undef DISALLOW_ASSIGN
18 #define DISALLOW_ASSIGN(TypeName) \
19 void operator=(const TypeName&) 15 void operator=(const TypeName&)
20 16
21 // A macro to disallow the evil copy constructor and operator= functions 17 // A macro to disallow the evil copy constructor and operator= functions
22 // This should be used in the private: declarations for a class. 18 // This should be used in the private: declarations for a class.
23 #undef DISALLOW_COPY_AND_ASSIGN 19 #define RTC_DISALLOW_COPY_AND_ASSIGN(TypeName) \
24 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ 20 TypeName(const TypeName&); \
25 TypeName(const TypeName&); \ 21 RTC_DISALLOW_ASSIGN(TypeName)
26 DISALLOW_ASSIGN(TypeName)
27 22
28 // A macro to disallow all the implicit constructors, namely the 23 // A macro to disallow all the implicit constructors, namely the
29 // default constructor, copy constructor and operator= functions. 24 // default constructor, copy constructor and operator= functions.
30 // 25 //
31 // This should be used in the private: declarations for a class 26 // This should be used in the private: declarations for a class
32 // that wants to prevent anyone from instantiating it. This is 27 // that wants to prevent anyone from instantiating it. This is
33 // especially useful for classes containing only static methods. 28 // especially useful for classes containing only static methods.
34 #undef DISALLOW_IMPLICIT_CONSTRUCTORS 29 #define RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
35 #define DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \ 30 TypeName(); \
36 TypeName(); \ 31 RTC_DISALLOW_COPY_AND_ASSIGN(TypeName)
37 DISALLOW_COPY_AND_ASSIGN(TypeName)
38
39 32
40 #endif // WEBRTC_BASE_CONSTRUCTORMAGIC_H_ 33 #endif // WEBRTC_BASE_CONSTRUCTORMAGIC_H_
OLDNEW
« no previous file with comments | « webrtc/base/bytebuffer.h ('k') | webrtc/base/criticalsection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698