Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Unified Diff: chrome/browser/chromeos/drive/drive_integration_service.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698