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

Unified Diff: webrtc/overrides/webrtc/base/constructormagic.h

Issue 1345193002: Temporarily define RTC_DISALLOW_ASSIGN in Chromium constructormagic override. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/overrides/webrtc/base/constructormagic.h
diff --git a/webrtc/overrides/webrtc/base/constructormagic.h b/webrtc/overrides/webrtc/base/constructormagic.h
index 91e27489b1e7b3ead2424681ef23ac79735547ab..f71fe82024c6ac38efd2ccd2e6f2acb5187739be 100644
--- a/webrtc/overrides/webrtc/base/constructormagic.h
+++ b/webrtc/overrides/webrtc/base/constructormagic.h
@@ -17,4 +17,13 @@
#include "base/macros.h"
+#define RTC_DISALLOW_ASSIGN(TypeName) \
+ DISALLOW_ASSIGN(TypeName)
+
+#define RTC_DISALLOW_COPY_AND_ASSIGN(TypeName) \
+ DISALLOW_COPY_AND_ASSIGN(TypeName)
+
+#define RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName) \
+ DISALLOW_IMPLICIT_CONSTRUCTORS(TypeName)
+
#endif // OVERRIDES_WEBRTC_BASE_CONSTRUCTORMAGIC_H__
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698