| Index: mojo/examples/window_manager/debug_panel.h
|
| diff --git a/mojo/examples/window_manager/debug_panel.h b/mojo/examples/window_manager/debug_panel.h
|
| index 3a771aab8cc8b91f4df16bb01d6e9cbe98da0103..160e4003f3e7c4ff4a65552cf13ca1ea1ca66b59 100644
|
| --- a/mojo/examples/window_manager/debug_panel.h
|
| +++ b/mojo/examples/window_manager/debug_panel.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/macros.h"
|
| #include "mojo/services/public/interfaces/navigation/navigation.mojom.h"
|
| #include "ui/views/controls/button/button.h"
|
| #include "ui/views/layout/layout_manager.h"
|
| @@ -48,10 +49,10 @@ class DebugPanel : public views::LayoutManager, public views::ButtonListener {
|
|
|
| private:
|
| // LayoutManager overrides:
|
| - virtual gfx::Size GetPreferredSize(const views::View* view) const OVERRIDE;
|
| - virtual void Layout(views::View* host) OVERRIDE;
|
| + virtual gfx::Size GetPreferredSize(const views::View* view) const override;
|
| + virtual void Layout(views::View* host) override;
|
| virtual void ButtonPressed(views::Button* sender,
|
| - const ui::Event& event) OVERRIDE;
|
| + const ui::Event& event) override;
|
|
|
| void Navigate(const std::string& url);
|
|
|
|
|