Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / apps / ephemeral_app_service_factory.h
index b8f1c19..ea9b0eb 100644 (file)
@@ -6,7 +6,7 @@
 #define CHROME_BROWSER_APPS_EPHEMERAL_APP_SERVICE_FACTORY_H_
 
 #include "base/memory/singleton.h"
-#include "components/browser_context_keyed_service/browser_context_keyed_service_factory.h"
+#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
 
 class EphemeralAppService;
 class Profile;
@@ -21,15 +21,15 @@ class EphemeralAppServiceFactory : public BrowserContextKeyedServiceFactory {
   friend struct DefaultSingletonTraits<EphemeralAppServiceFactory>;
 
   EphemeralAppServiceFactory();
-  virtual ~EphemeralAppServiceFactory();
+  ~EphemeralAppServiceFactory() override;
 
   // BrowserContextKeyedServiceFactory implementation:
-  virtual BrowserContextKeyedService* BuildServiceInstanceFor(
-      content::BrowserContext* context) const OVERRIDE;
-  virtual content::BrowserContext* GetBrowserContextToUse(
-      content::BrowserContext* context) const OVERRIDE;
-  virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE;
-  virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
+  KeyedService* BuildServiceInstanceFor(
+      content::BrowserContext* context) const override;
+  content::BrowserContext* GetBrowserContextToUse(
+      content::BrowserContext* context) const override;
+  bool ServiceIsCreatedWithBrowserContext() const override;
+  bool ServiceIsNULLWhileTesting() const override;
 };
 
 #endif  // CHROME_BROWSER_APPS_EPHEMERAL_APP_SERVICE_FACTORY_H_