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

Unified Diff: webrtc/base/thread_checker_unittest.cc

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/thread.h ('k') | webrtc/base/virtualsocketserver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/thread_checker_unittest.cc
diff --git a/webrtc/base/thread_checker_unittest.cc b/webrtc/base/thread_checker_unittest.cc
index 3c496314fa2d86442bb3469f08c67168f01dbfb8..a193248eb7a8e053131ea5439719cdd6a4bdcfe7 100644
--- a/webrtc/base/thread_checker_unittest.cc
+++ b/webrtc/base/thread_checker_unittest.cc
@@ -49,7 +49,7 @@ class ThreadCheckerClass : public ThreadChecker {
static void DetachThenCallFromDifferentThreadImpl();
private:
- DISALLOW_COPY_AND_ASSIGN(ThreadCheckerClass);
+ RTC_DISALLOW_COPY_AND_ASSIGN(ThreadCheckerClass);
};
// Calls ThreadCheckerClass::DoStuff on another thread.
@@ -72,7 +72,7 @@ class CallDoStuffOnThread : public Thread {
private:
ThreadCheckerClass* thread_checker_class_;
- DISALLOW_COPY_AND_ASSIGN(CallDoStuffOnThread);
+ RTC_DISALLOW_COPY_AND_ASSIGN(CallDoStuffOnThread);
};
// Deletes ThreadCheckerClass on a different thread.
@@ -96,7 +96,7 @@ class DeleteThreadCheckerClassOnThread : public Thread {
private:
scoped_ptr<ThreadCheckerClass> thread_checker_class_;
- DISALLOW_COPY_AND_ASSIGN(DeleteThreadCheckerClassOnThread);
+ RTC_DISALLOW_COPY_AND_ASSIGN(DeleteThreadCheckerClassOnThread);
};
} // namespace
« no previous file with comments | « webrtc/base/thread.h ('k') | webrtc/base/virtualsocketserver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698