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

Unified Diff: ash/system/chromeos/audio/tray_audio_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: Workaround 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_chromeos.h
diff --git a/ash/system/chromeos/audio/tray_audio_chromeos.h b/ash/system/chromeos/audio/tray_audio_chromeos.h
index a41ce503f72166663cb506d929638274fb8d66a1..a20a49d7f51a672f9c6d8d0e415cb8c2e2f5d8f9 100644
--- a/ash/system/chromeos/audio/tray_audio_chromeos.h
+++ b/ash/system/chromeos/audio/tray_audio_chromeos.h
@@ -17,16 +17,16 @@ class AudioDetailedView;
class ASH_EXPORT TrayAudioChromeOs : public TrayAudio {
public:
explicit TrayAudioChromeOs(SystemTray* system_tray);
- virtual ~TrayAudioChromeOs();
+ ~TrayAudioChromeOs() override;
protected:
// Overridden from TrayAudio
- virtual void Update() override;
+ void Update() override;
private:
// Overridden from SystemTrayItem.
- virtual views::View* CreateDetailedView(user::LoginStatus status) override;
- virtual void DestroyDetailedView() override;
+ views::View* CreateDetailedView(user::LoginStatus status) override;
+ void DestroyDetailedView() override;
tray::AudioDetailedView* audio_detail_view_;
« no previous file with comments | « ash/system/chromeos/audio/audio_detailed_view.h ('k') | ash/system/chromeos/audio/tray_audio_delegate_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698