Index: chrome/browser/chromeos/drive/drive_integration_service.h |
diff --git a/chrome/browser/chromeos/drive/drive_integration_service.h b/chrome/browser/chromeos/drive/drive_integration_service.h |
index d60e4cc9cd61df299d6bf75a82198568cec1020a..8f6ad6d3920c98b9e3777092111e130fcc7b4132 100644 |
--- a/chrome/browser/chromeos/drive/drive_integration_service.h |
+++ b/chrome/browser/chromeos/drive/drive_integration_service.h |
@@ -86,7 +86,7 @@ class DriveIntegrationService : public KeyedService, |
virtual ~DriveIntegrationService(); |
// KeyedService override: |
- virtual void Shutdown() OVERRIDE; |
+ virtual void Shutdown() override; |
void SetEnabled(bool enabled); |
bool is_enabled() const { return enabled_; } |
@@ -98,8 +98,8 @@ class DriveIntegrationService : public KeyedService, |
void RemoveObserver(DriveIntegrationServiceObserver* observer); |
// DriveNotificationObserver implementation. |
- virtual void OnNotificationReceived() OVERRIDE; |
- virtual void OnPushNotificationEnabled(bool enabled) OVERRIDE; |
+ virtual void OnNotificationReceived() override; |
+ virtual void OnPushNotificationEnabled(bool enabled) override; |
EventLogger* event_logger() { return logger_.get(); } |
DriveServiceInterface* drive_service() { return drive_service_.get(); } |
@@ -155,7 +155,7 @@ class DriveIntegrationService : public KeyedService, |
// content::NotificationObserver overrides. |
virtual void Observe(int type, |
const content::NotificationSource& source, |
- const content::NotificationDetails& details) OVERRIDE; |
+ const content::NotificationDetails& details) override; |
friend class DriveIntegrationServiceFactory; |
@@ -226,9 +226,9 @@ class DriveIntegrationServiceFactory |
// BrowserContextKeyedServiceFactory overrides. |
virtual content::BrowserContext* GetBrowserContextToUse( |
- content::BrowserContext* context) const OVERRIDE; |
+ content::BrowserContext* context) const override; |
virtual KeyedService* BuildServiceInstanceFor( |
- content::BrowserContext* context) const OVERRIDE; |
+ content::BrowserContext* context) const override; |
// This is static so it can be set without instantiating the factory. This |
// allows factory creation to be delayed until it normally happens (on profile |