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

Unified Diff: components/invalidation/gcm_network_channel.h

Issue 666133002: Standardize usage of virtual/override/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 8fecd5a6ffeabd9172ea598fbcbdf1f4a30f985a..bf845181fec06578107c84d40df40cf9d711046e 100644
--- a/components/invalidation/gcm_network_channel.h
+++ b/components/invalidation/gcm_network_channel.h
@@ -56,25 +56,25 @@ class INVALIDATION_EXPORT_PRIVATE GCMNetworkChannel
scoped_refptr<net::URLRequestContextGetter> request_context_getter,
scoped_ptr<GCMNetworkChannelDelegate> delegate);
- virtual ~GCMNetworkChannel();
+ ~GCMNetworkChannel() override;
// invalidation::NetworkChannel implementation.
- virtual void SendMessage(const std::string& message) override;
- virtual void SetMessageReceiver(
+ void SendMessage(const std::string& message) override;
+ void SetMessageReceiver(
invalidation::MessageCallback* incoming_receiver) override;
// SyncNetworkChannel implementation.
- virtual void UpdateCredentials(const std::string& email,
- const std::string& token) override;
- virtual int GetInvalidationClientType() override;
- virtual void RequestDetailedStatus(
+ void UpdateCredentials(const std::string& email,
+ const std::string& token) override;
+ int GetInvalidationClientType() override;
+ void RequestDetailedStatus(
base::Callback<void(const base::DictionaryValue&)> callback) override;
// URLFetcherDelegate implementation.
- virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
// NetworkChangeObserver implementation.
- virtual void OnNetworkChanged(
+ void OnNetworkChanged(
net::NetworkChangeNotifier::ConnectionType connection_type) override;
protected:
« 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