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

Unified Diff: webrtc/base/bitbuffer.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/autodetectproxy.h ('k') | webrtc/base/bufferqueue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/bitbuffer.h
diff --git a/webrtc/base/bitbuffer.h b/webrtc/base/bitbuffer.h
index 4f9ed3c3cdf214bf255c1a2216ab87ec6ace318d..7202675a44c7348c79deb9b7ccebdc81000b19d4 100644
--- a/webrtc/base/bitbuffer.h
+++ b/webrtc/base/bitbuffer.h
@@ -81,7 +81,7 @@ class BitBuffer {
// The current offset, in bits, into the current byte.
size_t bit_offset_;
- DISALLOW_COPY_AND_ASSIGN(BitBuffer);
+ RTC_DISALLOW_COPY_AND_ASSIGN(BitBuffer);
};
// A BitBuffer API for write operations. Supports symmetric write APIs to the
@@ -110,7 +110,7 @@ class BitBufferWriter : public BitBuffer {
// The buffer, as a writable array.
uint8_t* const writable_bytes_;
- DISALLOW_COPY_AND_ASSIGN(BitBufferWriter);
+ RTC_DISALLOW_COPY_AND_ASSIGN(BitBufferWriter);
};
} // namespace rtc
« no previous file with comments | « webrtc/base/autodetectproxy.h ('k') | webrtc/base/bufferqueue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698