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

Unified Diff: chromeos/audio/cras_audio_handler.h

Issue 856563004: Update {virtual,override,final} to follow C++11 style in chromeos. (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
« no previous file with comments | « chromeos/audio/audio_devices_pref_handler_impl.h ('k') | chromeos/audio/cras_audio_handler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/audio/cras_audio_handler.h
diff --git a/chromeos/audio/cras_audio_handler.h b/chromeos/audio/cras_audio_handler.h
index 73b0f9fd4edf2518f5ac0d5b1df6a8562f208990..e16161f0c27c83948a012c46c716c247deca1500 100644
--- a/chromeos/audio/cras_audio_handler.h
+++ b/chromeos/audio/cras_audio_handler.h
@@ -191,22 +191,22 @@ class CHROMEOS_EXPORT CrasAudioHandler : public CrasAudioClient::Observer,
protected:
explicit CrasAudioHandler(
scoped_refptr<AudioDevicesPrefHandler> audio_pref_handler);
- virtual ~CrasAudioHandler();
+ ~CrasAudioHandler() override;
private:
friend class CrasAudioHandlerTest;
// CrasAudioClient::Observer overrides.
- virtual void AudioClientRestarted() override;
- virtual void NodesChanged() override;
- virtual void ActiveOutputNodeChanged(uint64 node_id) override;
- virtual void ActiveInputNodeChanged(uint64 node_id) override;
+ void AudioClientRestarted() override;
+ void NodesChanged() override;
+ void ActiveOutputNodeChanged(uint64 node_id) override;
+ void ActiveInputNodeChanged(uint64 node_id) override;
// AudioPrefObserver overrides.
- virtual void OnAudioPolicyPrefChanged() override;
+ void OnAudioPolicyPrefChanged() override;
// SessionManagerClient::Observer overrides.
- virtual void EmitLoginPromptVisibleCalled() override;
+ void EmitLoginPromptVisibleCalled() override;
// Sets the active audio output/input node to the node with |node_id|.
// If |notify|, notifies Active*NodeChange.
« no previous file with comments | « chromeos/audio/audio_devices_pref_handler_impl.h ('k') | chromeos/audio/cras_audio_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698