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

Unified Diff: components/invalidation/gcm_network_channel.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/gcm_network_channel.h
diff --git a/components/invalidation/gcm_network_channel.h b/components/invalidation/gcm_network_channel.h
index 52bca6ec52763c394951eb32aed727cb15e0fba1..8fecd5a6ffeabd9172ea598fbcbdf1f4a30f985a 100644
--- a/components/invalidation/gcm_network_channel.h
+++ b/components/invalidation/gcm_network_channel.h
@@ -59,23 +59,23 @@ class INVALIDATION_EXPORT_PRIVATE GCMNetworkChannel
virtual ~GCMNetworkChannel();
// invalidation::NetworkChannel implementation.
- virtual void SendMessage(const std::string& message) OVERRIDE;
+ virtual void SendMessage(const std::string& message) override;
virtual void SetMessageReceiver(
- invalidation::MessageCallback* incoming_receiver) OVERRIDE;
+ invalidation::MessageCallback* incoming_receiver) override;
// SyncNetworkChannel implementation.
virtual void UpdateCredentials(const std::string& email,
- const std::string& token) OVERRIDE;
- virtual int GetInvalidationClientType() OVERRIDE;
+ const std::string& token) override;
+ virtual int GetInvalidationClientType() override;
virtual void RequestDetailedStatus(
- base::Callback<void(const base::DictionaryValue&)> callback) OVERRIDE;
+ base::Callback<void(const base::DictionaryValue&)> callback) override;
// URLFetcherDelegate implementation.
- virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
+ virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
// NetworkChangeObserver implementation.
virtual void OnNetworkChanged(
- net::NetworkChangeNotifier::ConnectionType connection_type) OVERRIDE;
+ net::NetworkChangeNotifier::ConnectionType connection_type) override;
protected:
void ResetRegisterBackoffEntryForTest(
« no previous file with comments | « components/invalidation/gcm_invalidation_bridge.cc ('k') | components/invalidation/gcm_network_channel_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698