Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / dbus / object_manager_unittest.cc
index 54ddeac..cd02c5e 100644 (file)
@@ -51,7 +51,7 @@ class ObjectManagerTest
   virtual PropertySet* CreateProperties(
       ObjectProxy* object_proxy,
       const ObjectPath& object_path,
-      const std::string& interface_name) OVERRIDE {
+      const std::string& interface_name) override {
     Properties* properties = new Properties(
         object_proxy, interface_name,
         base::Bind(&ObjectManagerTest::OnPropertyChanged,
@@ -127,14 +127,14 @@ class ObjectManagerTest
  protected:
   // Called when an object is added.
   virtual void ObjectAdded(const ObjectPath& object_path,
-                           const std::string& interface_name) OVERRIDE {
+                           const std::string& interface_name) override {
     added_objects_.push_back(std::make_pair(object_path, interface_name));
     run_loop_->Quit();
   }
 
   // Called when an object is removed.
   virtual void ObjectRemoved(const ObjectPath& object_path,
-                             const std::string& interface_name) OVERRIDE {
+                             const std::string& interface_name) override {
     removed_objects_.push_back(std::make_pair(object_path, interface_name));
     run_loop_->Quit();
   }