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

Unified Diff: talk/media/base/rtpdump.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 | « talk/media/base/cpuid.h ('k') | talk/media/base/streamparams.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/media/base/rtpdump.h
diff --git a/talk/media/base/rtpdump.h b/talk/media/base/rtpdump.h
index 33c31c983710c5e27c6af7cdf33f4c214e035446..ce85db1e0699425c7902698a9ab86a99cd1e2d3f 100644
--- a/talk/media/base/rtpdump.h
+++ b/talk/media/base/rtpdump.h
@@ -133,7 +133,7 @@ class RtpDumpReader {
uint32 start_time_ms_;
uint32 ssrc_override_;
- DISALLOW_COPY_AND_ASSIGN(RtpDumpReader);
+ RTC_DISALLOW_COPY_AND_ASSIGN(RtpDumpReader);
};
// RtpDumpLoopReader reads RTP dump packets from the input stream and rewinds
@@ -181,7 +181,7 @@ class RtpDumpLoopReader : public RtpDumpReader {
int prev_rtp_seq_num_;
uint32 prev_rtp_timestamp_;
- DISALLOW_COPY_AND_ASSIGN(RtpDumpLoopReader);
+ RTC_DISALLOW_COPY_AND_ASSIGN(RtpDumpLoopReader);
};
class RtpDumpWriter {
@@ -225,7 +225,7 @@ class RtpDumpWriter {
uint32 start_time_ms_; // Time when the record starts.
// If writing to the stream takes longer than this many ms, log a warning.
uint32 warn_slow_writes_delay_;
- DISALLOW_COPY_AND_ASSIGN(RtpDumpWriter);
+ RTC_DISALLOW_COPY_AND_ASSIGN(RtpDumpWriter);
};
} // namespace cricket
« no previous file with comments | « talk/media/base/cpuid.h ('k') | talk/media/base/streamparams.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698