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

Unified Diff: chrome/browser/chromeos/audio_mixer_alsa.h

Issue 8638016: Add OVERRIDE to chrome/browser/chromeos/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
Index: chrome/browser/chromeos/audio_mixer_alsa.h
diff --git a/chrome/browser/chromeos/audio_mixer_alsa.h b/chrome/browser/chromeos/audio_mixer_alsa.h
index ea7bb6b660f7c905a04eb73e5b763aa14dfd432d..7ec758ae0bdbad333a8eb7c23a1a2c489b91b496 100644
--- a/chrome/browser/chromeos/audio_mixer_alsa.h
+++ b/chrome/browser/chromeos/audio_mixer_alsa.h
@@ -10,6 +10,7 @@
#include "base/basictypes.h"
#include "base/callback_old.h"
+#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
@@ -31,13 +32,14 @@ class AudioMixerAlsa : public AudioMixer {
virtual ~AudioMixerAlsa();
// AudioMixer implementation.
- virtual void Init();
- virtual bool IsInitialized();
- virtual void GetVolumeLimits(double* min_volume_db, double* max_volume_db);
- virtual double GetVolumeDb();
- virtual void SetVolumeDb(double volume_db);
- virtual bool IsMuted();
- virtual void SetMuted(bool muted);
+ virtual void Init() OVERRIDE;
+ virtual bool IsInitialized() OVERRIDE;
+ virtual void GetVolumeLimits(double* min_volume_db,
+ double* max_volume_db) OVERRIDE;
+ virtual double GetVolumeDb() OVERRIDE;
+ virtual void SetVolumeDb(double volume_db) OVERRIDE;
+ virtual bool IsMuted() OVERRIDE;
+ virtual void SetMuted(bool muted) OVERRIDE;
// Registers volume and mute preferences.
// TODO(derat): Move prefs into AudioHandler.
« no previous file with comments | « no previous file | chrome/browser/chromeos/boot_times_loader.h » ('j') | chrome/browser/chromeos/login/password_changed_view.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698