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_; |