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

Unified Diff: ui/app_list/views/speech_view.cc

Issue 681873002: Standardize usage of virtual/override/final specifiers. (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 | « ui/app_list/views/speech_view.h ('k') | ui/app_list/views/speech_view_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/views/speech_view.cc
diff --git a/ui/app_list/views/speech_view.cc b/ui/app_list/views/speech_view.cc
index 82e5f3c846479778ebae75796ceab3f3079f8f14..10fcd510ee11e01e4c58774f8edde04bbc3ed6c8 100644
--- a/ui/app_list/views/speech_view.cc
+++ b/ui/app_list/views/speech_view.cc
@@ -49,11 +49,11 @@ const SkColor kSoundLevelIndicatorColor = SkColorSetRGB(219, 219, 219);
class SoundLevelIndicator : public views::View {
public:
SoundLevelIndicator();
- virtual ~SoundLevelIndicator();
+ ~SoundLevelIndicator() override;
private:
// Overridden from views::View:
- virtual void OnPaint(gfx::Canvas* canvas) override;
+ void OnPaint(gfx::Canvas* canvas) override;
DISALLOW_COPY_AND_ASSIGN(SoundLevelIndicator);
};
@@ -75,11 +75,11 @@ class MicButton : public views::ImageButton,
public views::MaskedTargeterDelegate {
public:
explicit MicButton(views::ButtonListener* listener);
- virtual ~MicButton();
+ ~MicButton() override;
private:
// views::MaskedTargeterDelegate:
- virtual bool GetHitTestMask(gfx::Path* mask) const override;
+ bool GetHitTestMask(gfx::Path* mask) const override;
DISALLOW_COPY_AND_ASSIGN(MicButton);
};
« no previous file with comments | « ui/app_list/views/speech_view.h ('k') | ui/app_list/views/speech_view_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698