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

Unified Diff: google_apis/gcm/engine/fake_connection_factory.h

Issue 649283003: Standardize usage of virtual/override/final in google_apis/ (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 | « google_apis/gcm/engine/connection_handler_impl.h ('k') | google_apis/gcm/engine/fake_connection_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gcm/engine/fake_connection_factory.h
diff --git a/google_apis/gcm/engine/fake_connection_factory.h b/google_apis/gcm/engine/fake_connection_factory.h
index dfba154fe6499c4cf3451c7380a7ed9ce5d957ec..9826270dfb0efbc9453710de526634c90df95b06 100644
--- a/google_apis/gcm/engine/fake_connection_factory.h
+++ b/google_apis/gcm/engine/fake_connection_factory.h
@@ -17,20 +17,20 @@ class FakeConnectionHandler;
class FakeConnectionFactory : public ConnectionFactory {
public:
FakeConnectionFactory();
- virtual ~FakeConnectionFactory();
+ ~FakeConnectionFactory() override;
// ConnectionFactory implementation.
- virtual void Initialize(
+ void Initialize(
const BuildLoginRequestCallback& request_builder,
const ConnectionHandler::ProtoReceivedCallback& read_callback,
const ConnectionHandler::ProtoSentCallback& write_callback) override;
- virtual ConnectionHandler* GetConnectionHandler() const override;
- virtual void Connect() override;
- virtual bool IsEndpointReachable() const override;
- virtual std::string GetConnectionStateString() const override;
- virtual base::TimeTicks NextRetryAttempt() const override;
- virtual void SignalConnectionReset(ConnectionResetReason reason) override;
- virtual void SetConnectionListener(ConnectionListener* listener) override;
+ ConnectionHandler* GetConnectionHandler() const override;
+ void Connect() override;
+ bool IsEndpointReachable() const override;
+ std::string GetConnectionStateString() const override;
+ base::TimeTicks NextRetryAttempt() const override;
+ void SignalConnectionReset(ConnectionResetReason reason) override;
+ void SetConnectionListener(ConnectionListener* listener) override;
// Whether a connection reset has been triggered and is yet to run.
bool reconnect_pending() const { return reconnect_pending_; }
« no previous file with comments | « google_apis/gcm/engine/connection_handler_impl.h ('k') | google_apis/gcm/engine/fake_connection_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698