| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index 83b04067986b3dd9ba84124d50132d1ecef4a1d5..73bfb998ef8daa1be27acd144ae8ed04b34e5e11 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -155,13 +155,12 @@ using views::Widget;
|
| class AshVisibilityController : public ::wm::VisibilityController {
|
| public:
|
| AshVisibilityController() {}
|
| - virtual ~AshVisibilityController() {}
|
| + ~AshVisibilityController() override {}
|
|
|
| private:
|
| // Overridden from ::wm::VisibilityController:
|
| - virtual bool CallAnimateOnChildWindowVisibilityChanged(
|
| - aura::Window* window,
|
| - bool visible) override {
|
| + bool CallAnimateOnChildWindowVisibilityChanged(aura::Window* window,
|
| + bool visible) override {
|
| return AnimateOnChildWindowVisibilityChanged(window, visible);
|
| }
|
|
|
|
|