X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fextensions%2Fbrowser%2Fapi%2Fstorage%2Fsettings_test_util.h;h=262d1c1dc8cb01912dbe5ad2caff171ea8b06f3f;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=82dd53965662ba79d99f2b6edeb60f02f65121cb;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/extensions/browser/api/storage/settings_test_util.h b/src/extensions/browser/api/storage/settings_test_util.h index 82dd539..262d1c1 100644 --- a/src/extensions/browser/api/storage/settings_test_util.h +++ b/src/extensions/browser/api/storage/settings_test_util.h @@ -60,13 +60,13 @@ scoped_refptr 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 event_router_; @@ -86,15 +86,14 @@ class ScopedSettingsStorageFactory : public SettingsStorageFactory { void Reset(const scoped_refptr& 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 delegate_; };