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

Unified Diff: chrome/browser/drive/drive_notification_manager.h

Issue 671513005: Standardize usage of virtual/override/final in chrome/browser/drive/ (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/drive/drive_notification_manager.h
diff --git a/chrome/browser/drive/drive_notification_manager.h b/chrome/browser/drive/drive_notification_manager.h
index 38518a7a283e32aeed737648f888a1feed357a9b..e125cdefa513216014cb713076d6cfeeb82ed0d3 100644
--- a/chrome/browser/drive/drive_notification_manager.h
+++ b/chrome/browser/drive/drive_notification_manager.h
@@ -29,17 +29,16 @@ class DriveNotificationManager : public KeyedService,
public:
explicit DriveNotificationManager(
invalidation::InvalidationService* invalidation_service);
- virtual ~DriveNotificationManager();
+ ~DriveNotificationManager() override;
// KeyedService override.
- virtual void Shutdown() override;
+ void Shutdown() override;
// syncer::InvalidationHandler implementation.
- virtual void OnInvalidatorStateChange(
- syncer::InvalidatorState state) override;
- virtual void OnIncomingInvalidation(
+ void OnInvalidatorStateChange(syncer::InvalidatorState state) override;
+ void OnIncomingInvalidation(
const syncer::ObjectIdInvalidationMap& invalidation_map) override;
- virtual std::string GetOwnerName() const override;
+ std::string GetOwnerName() const override;
void AddObserver(DriveNotificationObserver* observer);
void RemoveObserver(DriveNotificationObserver* observer);
« no previous file with comments | « chrome/browser/drive/drive_app_registry_unittest.cc ('k') | chrome/browser/drive/drive_notification_manager_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698