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

Unified Diff: ash/system/chromeos/audio/tray_audio_delegate_chromeos.h

Issue 800983006: Update {virtual,override,final} to follow C++11 style in ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
Index: ash/system/chromeos/audio/tray_audio_delegate_chromeos.h
diff --git a/ash/system/chromeos/audio/tray_audio_delegate_chromeos.h b/ash/system/chromeos/audio/tray_audio_delegate_chromeos.h
index 24067d6ca0a3127d6ff4de9517e3a527f93b0a36..c51d246bcff49d04f5f992e5ac974072b78c44af 100644
--- a/ash/system/chromeos/audio/tray_audio_delegate_chromeos.h
+++ b/ash/system/chromeos/audio/tray_audio_delegate_chromeos.h
@@ -14,18 +14,18 @@ namespace system {
class ASH_EXPORT TrayAudioDelegateChromeOs : public TrayAudioDelegate {
public:
- virtual ~TrayAudioDelegateChromeOs() {}
+ ~TrayAudioDelegateChromeOs() override {}
// Overridden from TrayAudioDelegate.
- virtual void AdjustOutputVolumeToAudibleLevel() override;
- virtual int GetOutputDefaultVolumeMuteLevel() override;
- virtual int GetOutputVolumeLevel() override;
- virtual int GetActiveOutputDeviceIconId() override;
- virtual bool HasAlternativeSources() override;
- virtual bool IsOutputAudioMuted() override;
- virtual void SetOutputAudioIsMuted(bool is_muted) override;
- virtual void SetOutputVolumeLevel(int level) override;
- virtual void SetInternalSpeakerChannelMode(AudioChannelMode mode) override;
+ void AdjustOutputVolumeToAudibleLevel() override;
+ int GetOutputDefaultVolumeMuteLevel() override;
+ int GetOutputVolumeLevel() override;
+ int GetActiveOutputDeviceIconId() override;
+ bool HasAlternativeSources() override;
+ bool IsOutputAudioMuted() override;
+ void SetOutputAudioIsMuted(bool is_muted) override;
+ void SetOutputVolumeLevel(int level) override;
+ void SetInternalSpeakerChannelMode(AudioChannelMode mode) override;
};
} // namespace system

Powered by Google App Engine
This is Rietveld 408576698