Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / ui / views / controls / native / native_view_host_unittest.cc
index 4fa9a75..bed3057 100644 (file)
@@ -18,7 +18,7 @@ class NativeViewHostTest : public test::NativeViewHostTestBase {
   NativeViewHostTest() {
   }
 
-  virtual void SetUp() OVERRIDE {
+  void SetUp() override {
     ViewsTestBase::SetUp();
     CreateTopLevel();
   }
@@ -43,7 +43,7 @@ class NativeViewHierarchyChangedTestView : public View {
   int notification_count() const { return notification_count_; }
 
   // Overriden from View:
-  virtual void NativeViewHierarchyChanged() OVERRIDE {
+  void NativeViewHierarchyChanged() override {
     ++notification_count_;
     View::NativeViewHierarchyChanged();
   }
@@ -73,8 +73,8 @@ class ViewHierarchyChangedTestHost : public NativeViewHost {
   }
 
   // Overriden from NativeViewHost:
-  virtual void ViewHierarchyChanged(
-      const ViewHierarchyChangedDetails& details) OVERRIDE {
+  void ViewHierarchyChanged(
+      const ViewHierarchyChangedDetails& details) override {
     gfx::NativeView parent_before = native_view() ?
         GetNativeParent(native_view()) : NULL;
     NativeViewHost::ViewHierarchyChanged(details);