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

Unified Diff: media/audio/audio_output_dispatcher_impl.h

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/audio_output_device.cc ('k') | media/audio/audio_output_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_output_dispatcher_impl.h
diff --git a/media/audio/audio_output_dispatcher_impl.h b/media/audio/audio_output_dispatcher_impl.h
index 52d647a3be644a07f81fda36bc442d9c4e308ef8..031896f427f7fd79fc6a4d6500d7664df73a148e 100644
--- a/media/audio/audio_output_dispatcher_impl.h
+++ b/media/audio/audio_output_dispatcher_impl.h
@@ -40,26 +40,26 @@ class MEDIA_EXPORT AudioOutputDispatcherImpl : public AudioOutputDispatcher {
// Opens a new physical stream if there are no pending streams in
// |idle_streams_|. Do not call Close() or Stop() if this method fails.
- virtual bool OpenStream() OVERRIDE;
+ virtual bool OpenStream() override;
// If there are pending streams in |idle_streams_| then it reuses one of
// them, otherwise creates a new one.
virtual bool StartStream(AudioOutputStream::AudioSourceCallback* callback,
- AudioOutputProxy* stream_proxy) OVERRIDE;
+ AudioOutputProxy* stream_proxy) override;
// Stops the stream assigned to the specified proxy and moves it into
// |idle_streams_| for reuse by other proxies.
- virtual void StopStream(AudioOutputProxy* stream_proxy) OVERRIDE;
+ virtual void StopStream(AudioOutputProxy* stream_proxy) override;
virtual void StreamVolumeSet(AudioOutputProxy* stream_proxy,
- double volume) OVERRIDE;
+ double volume) override;
// Closes |idle_streams_| until the number of |idle_streams_| is equal to the
// |idle_proxies_| count. If there are no |idle_proxies_| a single stream is
// kept alive until |close_timer_| fires.
- virtual void CloseStream(AudioOutputProxy* stream_proxy) OVERRIDE;
+ virtual void CloseStream(AudioOutputProxy* stream_proxy) override;
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
private:
friend class base::RefCountedThreadSafe<AudioOutputDispatcherImpl>;
« no previous file with comments | « media/audio/audio_output_device.cc ('k') | media/audio/audio_output_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698