X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fui%2Fviews%2Fcontrols%2Fnative%2Fnative_view_host_aura_unittest.cc;h=7f14bd47460b989867198f245bd8784558482e56;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=27ce1420b9da92ddc981b971f40ac982c9803049;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/ui/views/controls/native/native_view_host_aura_unittest.cc b/src/ui/views/controls/native/native_view_host_aura_unittest.cc index 27ce142..7f14bd4 100644 --- a/src/ui/views/controls/native/native_view_host_aura_unittest.cc +++ b/src/ui/views/controls/native/native_view_host_aura_unittest.cc @@ -39,13 +39,12 @@ class NativeViewHostWindowObserver : public aura::WindowObserver { }; NativeViewHostWindowObserver() {} - virtual ~NativeViewHostWindowObserver() {} + ~NativeViewHostWindowObserver() override {} const std::vector& events() const { return events_; } // aura::WindowObserver overrides - virtual void OnWindowVisibilityChanged(aura::Window* window, - bool visible) OVERRIDE { + void OnWindowVisibilityChanged(aura::Window* window, bool visible) override { EventDetails event; event.type = visible ? EVENT_SHOWN : EVENT_HIDDEN; event.window = window; @@ -57,9 +56,9 @@ class NativeViewHostWindowObserver : public aura::WindowObserver { events_.push_back(event); } - virtual void OnWindowBoundsChanged(aura::Window* window, - const gfx::Rect& old_bounds, - const gfx::Rect& new_bounds) OVERRIDE { + void OnWindowBoundsChanged(aura::Window* window, + const gfx::Rect& old_bounds, + const gfx::Rect& new_bounds) override { EventDetails event; event.type = EVENT_BOUNDS_CHANGED; event.window = window;