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

Unified Diff: chromeos/audio/audio_devices_pref_handler_stub.h

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (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 | « chromeos/attestation/mock_attestation_flow.h ('k') | chromeos/audio/cras_audio_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/audio/audio_devices_pref_handler_stub.h
diff --git a/chromeos/audio/audio_devices_pref_handler_stub.h b/chromeos/audio/audio_devices_pref_handler_stub.h
index 5f07dc82b0076d852d845e0c8b214e75dad089f5..756038dc01f5ff5f9f2f1dcc77c216da458167c6 100644
--- a/chromeos/audio/audio_devices_pref_handler_stub.h
+++ b/chromeos/audio/audio_devices_pref_handler_stub.h
@@ -22,16 +22,16 @@ class CHROMEOS_EXPORT AudioDevicesPrefHandlerStub
AudioDevicesPrefHandlerStub();
- virtual double GetOutputVolumeValue(const AudioDevice* device) OVERRIDE;
- virtual double GetInputGainValue(const AudioDevice* device) OVERRIDE;
+ virtual double GetOutputVolumeValue(const AudioDevice* device) override;
+ virtual double GetInputGainValue(const AudioDevice* device) override;
virtual void SetVolumeGainValue(const AudioDevice& device,
- double value) OVERRIDE;
- virtual bool GetMuteValue(const AudioDevice& device) OVERRIDE;
- virtual void SetMuteValue(const AudioDevice& device, bool mute_on) OVERRIDE;
- virtual bool GetAudioCaptureAllowedValue() OVERRIDE;
- virtual bool GetAudioOutputAllowedValue() OVERRIDE;
- virtual void AddAudioPrefObserver(AudioPrefObserver* observer) OVERRIDE;
- virtual void RemoveAudioPrefObserver(AudioPrefObserver* observer) OVERRIDE;
+ double value) override;
+ virtual bool GetMuteValue(const AudioDevice& device) override;
+ virtual void SetMuteValue(const AudioDevice& device, bool mute_on) override;
+ virtual bool GetAudioCaptureAllowedValue() override;
+ virtual bool GetAudioOutputAllowedValue() override;
+ virtual void AddAudioPrefObserver(AudioPrefObserver* observer) override;
+ virtual void RemoveAudioPrefObserver(AudioPrefObserver* observer) override;
protected:
virtual ~AudioDevicesPrefHandlerStub();
« no previous file with comments | « chromeos/attestation/mock_attestation_flow.h ('k') | chromeos/audio/cras_audio_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698