| Index: ash/test/child_modal_window.cc
|
| diff --git a/ash/test/child_modal_window.cc b/ash/test/child_modal_window.cc
|
| index 3e8896ad7d34e81db46c74bdfb7375445fc6e261..255f4ccf7051e1ee473743dd52d592317a676eee 100644
|
| --- a/ash/test/child_modal_window.cc
|
| +++ b/ash/test/child_modal_window.cc
|
| @@ -58,18 +58,18 @@ void CreateChildModalParent(gfx::NativeView context) {
|
| class ChildModalWindow : public views::WidgetDelegateView {
|
| public:
|
| ChildModalWindow();
|
| - virtual ~ChildModalWindow();
|
| + ~ChildModalWindow() override;
|
|
|
| private:
|
| // Overridden from View:
|
| - virtual void OnPaint(gfx::Canvas* canvas) override;
|
| - virtual gfx::Size GetPreferredSize() const override;
|
| + void OnPaint(gfx::Canvas* canvas) override;
|
| + gfx::Size GetPreferredSize() const override;
|
|
|
| // Overridden from WidgetDelegate:
|
| - virtual View* GetContentsView() override;
|
| - virtual base::string16 GetWindowTitle() const override;
|
| - virtual bool CanResize() const override;
|
| - virtual ui::ModalType GetModalType() const override;
|
| + View* GetContentsView() override;
|
| + base::string16 GetWindowTitle() const override;
|
| + bool CanResize() const override;
|
| + ui::ModalType GetModalType() const override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ChildModalWindow);
|
| };
|
|
|