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

Unified Diff: webrtc/common_audio/wav_file.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/common_audio/sparse_fir_filter.h ('k') | webrtc/common_audio/window_generator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_audio/wav_file.h
diff --git a/webrtc/common_audio/wav_file.h b/webrtc/common_audio/wav_file.h
index 2f2e793a1e5f5c590fcb85cbb74a0d88fa307e74..14a8a0e2dfdf3e7291d75bec895e35bae95eca60 100644
--- a/webrtc/common_audio/wav_file.h
+++ b/webrtc/common_audio/wav_file.h
@@ -58,7 +58,7 @@ class WavWriter final : public WavFile {
uint32_t num_samples_; // Total number of samples written to file.
FILE* file_handle_; // Output file, owned by this class
- DISALLOW_COPY_AND_ASSIGN(WavWriter);
+ RTC_DISALLOW_COPY_AND_ASSIGN(WavWriter);
};
// Follows the conventions of WavWriter.
@@ -87,7 +87,7 @@ class WavReader final : public WavFile {
uint32_t num_samples_remaining_;
FILE* file_handle_; // Input file, owned by this class.
- DISALLOW_COPY_AND_ASSIGN(WavReader);
+ RTC_DISALLOW_COPY_AND_ASSIGN(WavReader);
};
} // namespace webrtc
« no previous file with comments | « webrtc/common_audio/sparse_fir_filter.h ('k') | webrtc/common_audio/window_generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698