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

Unified Diff: components/invalidation/gcm_invalidation_bridge.cc

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
« no previous file with comments | « components/invalidation/gcm_invalidation_bridge.h ('k') | components/invalidation/gcm_network_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/invalidation/gcm_invalidation_bridge.cc
diff --git a/components/invalidation/gcm_invalidation_bridge.cc b/components/invalidation/gcm_invalidation_bridge.cc
index 1ff5aa6dc4ac99c2158463b08453144418b3027b..23cb09e1141ef165cd43c778ecb42757da840cf8 100644
--- a/components/invalidation/gcm_invalidation_bridge.cc
+++ b/components/invalidation/gcm_invalidation_bridge.cc
@@ -38,14 +38,14 @@ class GCMInvalidationBridge::Core : public syncer::GCMNetworkChannelDelegate,
public:
Core(base::WeakPtr<GCMInvalidationBridge> bridge,
scoped_refptr<base::SingleThreadTaskRunner> ui_thread_task_runner);
- virtual ~Core();
+ ~Core() override;
// syncer::GCMNetworkChannelDelegate implementation.
- virtual void Initialize(ConnectionStateCallback callback) override;
- virtual void RequestToken(RequestTokenCallback callback) override;
- virtual void InvalidateToken(const std::string& token) override;
- virtual void Register(RegisterCallback callback) override;
- virtual void SetMessageReceiver(MessageCallback callback) override;
+ void Initialize(ConnectionStateCallback callback) override;
+ void RequestToken(RequestTokenCallback callback) override;
+ void InvalidateToken(const std::string& token) override;
+ void Register(RegisterCallback callback) override;
+ void SetMessageReceiver(MessageCallback callback) override;
void RequestTokenFinished(RequestTokenCallback callback,
const GoogleServiceAuthError& error,
« no previous file with comments | « components/invalidation/gcm_invalidation_bridge.h ('k') | components/invalidation/gcm_network_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698