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

Unified Diff: chrome/browser/apps/drive/drive_service_bridge.cc

Issue 668903002: Standardize usage of virtual/override/final in chrome/browser/apps/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/apps/drive/drive_service_bridge.cc
diff --git a/chrome/browser/apps/drive/drive_service_bridge.cc b/chrome/browser/apps/drive/drive_service_bridge.cc
index da31df572203f8dfbbf7b62b16fa04b91da283b4..b9d90c961a992360e992b0a4ea932db31af1da99 100644
--- a/chrome/browser/apps/drive/drive_service_bridge.cc
+++ b/chrome/browser/apps/drive/drive_service_bridge.cc
@@ -28,19 +28,19 @@ class DriveServiceBridgeImpl : public DriveServiceBridge,
public drive::DriveNotificationObserver {
public:
explicit DriveServiceBridgeImpl(Profile* profile);
- virtual ~DriveServiceBridgeImpl();
+ ~DriveServiceBridgeImpl() override;
void Initialize();
// DriveServiceBridge:
- virtual drive::DriveAppRegistry* GetAppRegistry() override;
+ drive::DriveAppRegistry* GetAppRegistry() override;
// drive::DriveServiceObserver:
- virtual void OnReadyToSendRequests() override;
+ void OnReadyToSendRequests() override;
// drive::DriveNotificationObserver:
- virtual void OnNotificationReceived() override;
- virtual void OnPushNotificationEnabled(bool enabled) override;
+ void OnNotificationReceived() override;
+ void OnPushNotificationEnabled(bool enabled) override;
private:
Profile* profile_;
« no previous file with comments | « chrome/browser/apps/drive/drive_app_provider_browsertest.cc ('k') | chrome/browser/apps/ephemeral_app_browsertest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698