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

Unified Diff: content/browser/media/media_internals.cc

Issue 629963002: Replacing the OVERRIDE with override and FINAL with final in content/browser/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 | « content/browser/media/media_internals.h ('k') | content/browser/media/media_internals_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/media/media_internals.cc
diff --git a/content/browser/media/media_internals.cc b/content/browser/media/media_internals.cc
index 06c51e6f30e278b71cef2a5b22f758f79a571f4a..2a031c73eb01c4b5bca33ea69cbe7b9ff6470a52 100644
--- a/content/browser/media/media_internals.cc
+++ b/content/browser/media/media_internals.cc
@@ -72,12 +72,12 @@ class AudioLogImpl : public media::AudioLog {
virtual void OnCreated(int component_id,
const media::AudioParameters& params,
- const std::string& device_id) OVERRIDE;
- virtual void OnStarted(int component_id) OVERRIDE;
- virtual void OnStopped(int component_id) OVERRIDE;
- virtual void OnClosed(int component_id) OVERRIDE;
- virtual void OnError(int component_id) OVERRIDE;
- virtual void OnSetVolume(int component_id, double volume) OVERRIDE;
+ const std::string& device_id) override;
+ virtual void OnStarted(int component_id) override;
+ virtual void OnStopped(int component_id) override;
+ virtual void OnClosed(int component_id) override;
+ virtual void OnError(int component_id) override;
+ virtual void OnSetVolume(int component_id, double volume) override;
private:
void SendSingleStringUpdate(int component_id,
« no previous file with comments | « content/browser/media/media_internals.h ('k') | content/browser/media/media_internals_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698