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

Unified Diff: webrtc/sound/alsasoundsystem.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/sound/alsasoundsystem.h ('k') | webrtc/sound/pulseaudiosoundsystem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/sound/alsasoundsystem.cc
diff --git a/webrtc/sound/alsasoundsystem.cc b/webrtc/sound/alsasoundsystem.cc
index 867af440a02fe4e1e38b26cee7cf0a6f436da4f0..d96db0b046f7de4513914fd9f142b3c0db904605 100644
--- a/webrtc/sound/alsasoundsystem.cc
+++ b/webrtc/sound/alsasoundsystem.cc
@@ -223,7 +223,7 @@ class AlsaStream {
int flags_;
int freq_;
- DISALLOW_COPY_AND_ASSIGN(AlsaStream);
+ RTC_DISALLOW_COPY_AND_ASSIGN(AlsaStream);
};
// Implementation of an input stream. See soundinputstreaminterface.h regarding
@@ -329,7 +329,7 @@ class AlsaInputStream :
rtc::scoped_ptr<char[]> buffer_;
size_t buffer_size_;
- DISALLOW_COPY_AND_ASSIGN(AlsaInputStream);
+ RTC_DISALLOW_COPY_AND_ASSIGN(AlsaInputStream);
};
// Implementation of an output stream. See soundoutputstreaminterface.h
@@ -434,7 +434,7 @@ class AlsaOutputStream :
AlsaStream stream_;
- DISALLOW_COPY_AND_ASSIGN(AlsaOutputStream);
+ RTC_DISALLOW_COPY_AND_ASSIGN(AlsaOutputStream);
};
AlsaSoundSystem::AlsaSoundSystem() : initialized_(false) {}
« no previous file with comments | « webrtc/sound/alsasoundsystem.h ('k') | webrtc/sound/pulseaudiosoundsystem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698