Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / extensions / browser / api / storage / settings_test_util.h
index 82dd539..262d1c1 100644 (file)
@@ -60,13 +60,13 @@ scoped_refptr<const Extension> AddExtensionWithIdAndPermissions(
 class MockExtensionSystemWithEventRouter : public MockExtensionSystem {
  public:
   explicit MockExtensionSystemWithEventRouter(content::BrowserContext* context);
-  virtual ~MockExtensionSystemWithEventRouter();
+  ~MockExtensionSystemWithEventRouter() override;
 
   // Factory method for SetTestingFactoryAndUse.
   static KeyedService* Build(content::BrowserContext* context);
 
   // MockExtensionSystem overrides:
-  virtual EventRouter* event_router() OVERRIDE;
+  EventRouter* event_router() override;
 
  private:
   scoped_ptr<EventRouter> event_router_;
@@ -86,15 +86,14 @@ class ScopedSettingsStorageFactory : public SettingsStorageFactory {
   void Reset(const scoped_refptr<SettingsStorageFactory>& delegate);
 
   // SettingsStorageFactory implementation.
-  virtual ValueStore* Create(const base::FilePath& base_path,
-                             const std::string& extension_id) OVERRIDE;
-  virtual void DeleteDatabaseIfExists(
-      const base::FilePath& base_path,
-      const std::string& extension_id) OVERRIDE;
+  ValueStore* Create(const base::FilePath& base_path,
+                     const std::string& extension_id) override;
+  void DeleteDatabaseIfExists(const base::FilePath& base_path,
+                              const std::string& extension_id) override;
 
  private:
   // SettingsStorageFactory is refcounted.
-  virtual ~ScopedSettingsStorageFactory();
+  ~ScopedSettingsStorageFactory() override;
 
   scoped_refptr<SettingsStorageFactory> delegate_;
 };