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

Unified Diff: components/invalidation/p2p_invalidator.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/invalidation/p2p_invalidator.h
diff --git a/components/invalidation/p2p_invalidator.h b/components/invalidation/p2p_invalidator.h
index f82914e33b16672ebe395faeb85bb8263666c37e..932765aa2d90a1cfacef6c7ed17e8944a80f45c5 100644
--- a/components/invalidation/p2p_invalidator.h
+++ b/components/invalidation/p2p_invalidator.h
@@ -101,23 +101,23 @@ class INVALIDATION_EXPORT_PRIVATE P2PInvalidator
virtual ~P2PInvalidator();
// Invalidator implementation.
- virtual void RegisterHandler(InvalidationHandler* handler) OVERRIDE;
+ virtual void RegisterHandler(InvalidationHandler* handler) override;
virtual void UpdateRegisteredIds(InvalidationHandler* handler,
- const ObjectIdSet& ids) OVERRIDE;
- virtual void UnregisterHandler(InvalidationHandler* handler) OVERRIDE;
- virtual InvalidatorState GetInvalidatorState() const OVERRIDE;
+ const ObjectIdSet& ids) override;
+ virtual void UnregisterHandler(InvalidationHandler* handler) override;
+ virtual InvalidatorState GetInvalidatorState() const override;
virtual void UpdateCredentials(
- const std::string& email, const std::string& token) OVERRIDE;
+ const std::string& email, const std::string& token) override;
virtual void RequestDetailedStatus(
base::Callback<void(const base::DictionaryValue&)> callback) const
- OVERRIDE;
+ override;
// PushClientObserver implementation.
- virtual void OnNotificationsEnabled() OVERRIDE;
+ virtual void OnNotificationsEnabled() override;
virtual void OnNotificationsDisabled(
- notifier::NotificationsDisabledReason reason) OVERRIDE;
+ notifier::NotificationsDisabledReason reason) override;
virtual void OnIncomingNotification(
- const notifier::Notification& notification) OVERRIDE;
+ const notifier::Notification& notification) override;
void SendInvalidation(const ObjectIdSet& ids);
« no previous file with comments | « components/invalidation/p2p_invalidation_service.h ('k') | components/invalidation/profile_invalidation_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698