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

Unified Diff: media/audio/sounds/audio_stream_handler.cc

Issue 623263003: replace OVERRIDE and FINAL with override and final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « media/audio/simple_sources.h ('k') | media/audio/sounds/audio_stream_handler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/sounds/audio_stream_handler.cc
diff --git a/media/audio/sounds/audio_stream_handler.cc b/media/audio/sounds/audio_stream_handler.cc
index 6a3c16cb1e7282c4fa88c6fb796527e02cd6b97e..e57612ed11fda470fa136b1a4b92280a01aad565 100644
--- a/media/audio/sounds/audio_stream_handler.cc
+++ b/media/audio/sounds/audio_stream_handler.cc
@@ -105,7 +105,7 @@ class AudioStreamHandler::AudioStreamContainer
// AudioOutputStream::AudioSourceCallback overrides:
// Following methods could be called from *ANY* thread.
virtual int OnMoreData(AudioBus* dest,
- uint32 /* total_bytes_delay */) OVERRIDE {
+ uint32 /* total_bytes_delay */) override {
base::AutoLock al(state_lock_);
size_t bytes_written = 0;
@@ -124,7 +124,7 @@ class AudioStreamHandler::AudioStreamContainer
return dest->frames();
}
- virtual void OnError(AudioOutputStream* /* stream */) OVERRIDE {
+ virtual void OnError(AudioOutputStream* /* stream */) override {
LOG(ERROR) << "Error during system sound reproduction.";
}
« no previous file with comments | « media/audio/simple_sources.h ('k') | media/audio/sounds/audio_stream_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698