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

Unified Diff: components/invalidation/invalidation_notifier.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/invalidation_notifier.h
diff --git a/components/invalidation/invalidation_notifier.h b/components/invalidation/invalidation_notifier.h
index c8812dbb1cf60bef3293da54575b063c95eec82c..bf7147d9fef741fde999fa7ab70a0bc1c8ee2d49 100644
--- a/components/invalidation/invalidation_notifier.h
+++ b/components/invalidation/invalidation_notifier.h
@@ -53,21 +53,21 @@ class INVALIDATION_EXPORT_PRIVATE InvalidationNotifier
virtual ~InvalidationNotifier();
// 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;
// SyncInvalidationListener::Delegate implementation.
virtual void OnInvalidate(
- const ObjectIdInvalidationMap& invalidation_map) OVERRIDE;
- virtual void OnInvalidatorStateChange(InvalidatorState state) OVERRIDE;
+ const ObjectIdInvalidationMap& invalidation_map) override;
+ virtual void OnInvalidatorStateChange(InvalidatorState state) override;
private:
// We start off in the STOPPED state. When we get our initial
« no previous file with comments | « components/invalidation/invalidation_logger_unittest.cc ('k') | components/invalidation/invalidation_service_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698