| Index: extensions/browser/browser_context_keyed_api_factory.h
|
| diff --git a/extensions/browser/browser_context_keyed_api_factory.h b/extensions/browser/browser_context_keyed_api_factory.h
|
| index 15728dc55d294ab1a52b774f609bbd267b214ecf..d23915c975f5a8fa776d6229870b402c3858a48b 100644
|
| --- a/extensions/browser/browser_context_keyed_api_factory.h
|
| +++ b/extensions/browser/browser_context_keyed_api_factory.h
|
| @@ -103,14 +103,14 @@ class BrowserContextKeyedAPIFactory : public BrowserContextKeyedServiceFactory {
|
| private:
|
| // BrowserContextKeyedServiceFactory implementation.
|
| virtual KeyedService* BuildServiceInstanceFor(
|
| - content::BrowserContext* context) const OVERRIDE {
|
| + content::BrowserContext* context) const override {
|
| return new T(context);
|
| }
|
|
|
| // BrowserContextKeyedBaseFactory implementation.
|
| // These can be effectively overridden with template specializations.
|
| virtual content::BrowserContext* GetBrowserContextToUse(
|
| - content::BrowserContext* context) const OVERRIDE {
|
| + content::BrowserContext* context) const override {
|
| if (T::kServiceRedirectedInIncognito)
|
| return ExtensionsBrowserClient::Get()->GetOriginalContext(context);
|
|
|
| @@ -120,11 +120,11 @@ class BrowserContextKeyedAPIFactory : public BrowserContextKeyedServiceFactory {
|
| return BrowserContextKeyedServiceFactory::GetBrowserContextToUse(context);
|
| }
|
|
|
| - virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE {
|
| + virtual bool ServiceIsCreatedWithBrowserContext() const override {
|
| return T::kServiceIsCreatedWithBrowserContext;
|
| }
|
|
|
| - virtual bool ServiceIsNULLWhileTesting() const OVERRIDE {
|
| + virtual bool ServiceIsNULLWhileTesting() const override {
|
| return T::kServiceIsNULLWhileTesting;
|
| }
|
|
|
|
|