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

Unified Diff: webrtc/base/sigslottester.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/signalthread_unittest.cc ('k') | webrtc/base/sigslottester.h.pump » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/sigslottester.h
diff --git a/webrtc/base/sigslottester.h b/webrtc/base/sigslottester.h
index ae781a97e303c2710421bc2916d12530a3cf5e92..cdbd44aa90587e92dd034ef818165633b8e83b14 100755
--- a/webrtc/base/sigslottester.h
+++ b/webrtc/base/sigslottester.h
@@ -71,7 +71,7 @@ class SigslotTester1 : public sigslot::has_slots<> {
int callback_count_;
C1* capture1_;
- DISALLOW_COPY_AND_ASSIGN(SigslotTester1);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SigslotTester1);
};
template <class A1, class A2, class C1, class C2>
@@ -97,7 +97,7 @@ class SigslotTester2 : public sigslot::has_slots<> {
C1* capture1_;
C2* capture2_;
- DISALLOW_COPY_AND_ASSIGN(SigslotTester2);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SigslotTester2);
};
template <class A1, class A2, class A3, class C1, class C2, class C3>
@@ -125,7 +125,7 @@ class SigslotTester3 : public sigslot::has_slots<> {
C2* capture2_;
C3* capture3_;
- DISALLOW_COPY_AND_ASSIGN(SigslotTester3);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SigslotTester3);
};
template <class A1, class A2, class A3, class A4, class C1, class C2, class C3,
@@ -157,7 +157,7 @@ class SigslotTester4 : public sigslot::has_slots<> {
C3* capture3_;
C4* capture4_;
- DISALLOW_COPY_AND_ASSIGN(SigslotTester4);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SigslotTester4);
};
template <class A1, class A2, class A3, class A4, class A5, class C1, class C2,
@@ -192,7 +192,7 @@ class SigslotTester5 : public sigslot::has_slots<> {
C4* capture4_;
C5* capture5_;
- DISALLOW_COPY_AND_ASSIGN(SigslotTester5);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SigslotTester5);
};
} // namespace rtc
« no previous file with comments | « webrtc/base/signalthread_unittest.cc ('k') | webrtc/base/sigslottester.h.pump » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698