| 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);
|
| };
|
|
|