| Index: extensions/browser/renderer_startup_helper.h
|
| diff --git a/extensions/browser/renderer_startup_helper.h b/extensions/browser/renderer_startup_helper.h
|
| index a652209991a5022e10b3491c5dcd8e62d0dbbc3c..632760dd720ec94903af1544162be3c410205cf3 100644
|
| --- a/extensions/browser/renderer_startup_helper.h
|
| +++ b/extensions/browser/renderer_startup_helper.h
|
| @@ -34,7 +34,7 @@ class RendererStartupHelper : public KeyedService,
|
| // content::NotificationObserver overrides:
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) OVERRIDE;
|
| + const content::NotificationDetails& details) override;
|
|
|
| private:
|
| content::BrowserContext* browser_context_; // Not owned.
|
| @@ -61,10 +61,10 @@ class RendererStartupHelperFactory : public BrowserContextKeyedServiceFactory {
|
|
|
| // BrowserContextKeyedServiceFactory implementation:
|
| virtual KeyedService* BuildServiceInstanceFor(
|
| - content::BrowserContext* profile) const OVERRIDE;
|
| + content::BrowserContext* profile) const override;
|
| virtual content::BrowserContext* GetBrowserContextToUse(
|
| - content::BrowserContext* context) const OVERRIDE;
|
| - virtual bool ServiceIsCreatedWithBrowserContext() const OVERRIDE;
|
| + content::BrowserContext* context) const override;
|
| + virtual bool ServiceIsCreatedWithBrowserContext() const override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(RendererStartupHelperFactory);
|
| };
|
|
|