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

Unified Diff: ash/system/win/audio/tray_audio_delegate_win.h

Issue 1088593006: Update {virtual,override} to follow C++11 style in ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « ash/host/ash_window_tree_host_win.cc ('k') | ash/test/test_metro_viewer_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/win/audio/tray_audio_delegate_win.h
diff --git a/ash/system/win/audio/tray_audio_delegate_win.h b/ash/system/win/audio/tray_audio_delegate_win.h
index a299b7db33b3a1cf0905e6b93182287d63de18ba..9ab0208f9a12f098a4bdbd6b6d035e3e3b150104 100644
--- a/ash/system/win/audio/tray_audio_delegate_win.h
+++ b/ash/system/win/audio/tray_audio_delegate_win.h
@@ -18,18 +18,18 @@ namespace system {
class ASH_EXPORT TrayAudioDelegateWin : public TrayAudioDelegate {
public:
- virtual ~TrayAudioDelegateWin() {}
+ ~TrayAudioDelegateWin() 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;
private:
base::win::ScopedComPtr<ISimpleAudioVolume> CreateDefaultVolumeControl();
« no previous file with comments | « ash/host/ash_window_tree_host_win.cc ('k') | ash/test/test_metro_viewer_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698