| Index: content/shell/browser/shell_platform_data_aura.cc
|
| diff --git a/content/shell/browser/shell_platform_data_aura.cc b/content/shell/browser/shell_platform_data_aura.cc
|
| index 673fa375c048a9398af1f6d5453d259c4bf813dd..b30abc04b31d889ac9d7caf3ca5be2ea305bef98 100644
|
| --- a/content/shell/browser/shell_platform_data_aura.cc
|
| +++ b/content/shell/browser/shell_platform_data_aura.cc
|
| @@ -33,25 +33,25 @@ class FillLayout : public aura::LayoutManager {
|
|
|
| private:
|
| // aura::LayoutManager:
|
| - virtual void OnWindowResized() OVERRIDE {
|
| + virtual void OnWindowResized() override {
|
| }
|
|
|
| - virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE {
|
| + virtual void OnWindowAddedToLayout(aura::Window* child) override {
|
| child->SetBounds(root_->bounds());
|
| }
|
|
|
| - virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE {
|
| + virtual void OnWillRemoveWindowFromLayout(aura::Window* child) override {
|
| }
|
|
|
| - virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE {
|
| + virtual void OnWindowRemovedFromLayout(aura::Window* child) override {
|
| }
|
|
|
| virtual void OnChildWindowVisibilityChanged(aura::Window* child,
|
| - bool visible) OVERRIDE {
|
| + bool visible) override {
|
| }
|
|
|
| virtual void SetChildBounds(aura::Window* child,
|
| - const gfx::Rect& requested_bounds) OVERRIDE {
|
| + const gfx::Rect& requested_bounds) override {
|
| SetChildBoundsDirect(child, requested_bounds);
|
| }
|
|
|
| @@ -81,7 +81,7 @@ class MinimalInputEventFilter : public ui::internal::InputMethodDelegate,
|
|
|
| private:
|
| // ui::EventHandler:
|
| - virtual void OnKeyEvent(ui::KeyEvent* event) OVERRIDE {
|
| + virtual void OnKeyEvent(ui::KeyEvent* event) override {
|
| // See the comment in InputMethodEventFilter::OnKeyEvent() for details.
|
| if (event->IsTranslated()) {
|
| event->SetTranslated(false);
|
| @@ -92,7 +92,7 @@ class MinimalInputEventFilter : public ui::internal::InputMethodDelegate,
|
| }
|
|
|
| // ui::internal::InputMethodDelegate:
|
| - virtual bool DispatchKeyEventPostIME(const ui::KeyEvent& event) OVERRIDE {
|
| + virtual bool DispatchKeyEventPostIME(const ui::KeyEvent& event) override {
|
| // See the comment in InputMethodEventFilter::DispatchKeyEventPostIME() for
|
| // details.
|
| ui::KeyEvent aura_event(event);
|
|
|