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

Unified Diff: google_apis/gcm/engine/fake_connection_handler.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/fake_connection_factory.h ('k') | google_apis/gcm/engine/gcm_store_impl.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_handler.h
diff --git a/google_apis/gcm/engine/fake_connection_handler.h b/google_apis/gcm/engine/fake_connection_handler.h
index e176e3a22761fba287215fd6bc790109aea2ed20..4e43d12dec11df94d727ed36af15fedf88561e6e 100644
--- a/google_apis/gcm/engine/fake_connection_handler.h
+++ b/google_apis/gcm/engine/fake_connection_handler.h
@@ -19,15 +19,14 @@ class FakeConnectionHandler : public ConnectionHandler {
FakeConnectionHandler(
const ConnectionHandler::ProtoReceivedCallback& read_callback,
const ConnectionHandler::ProtoSentCallback& write_callback);
- virtual ~FakeConnectionHandler();
+ ~FakeConnectionHandler() override;
// ConnectionHandler implementation.
- virtual void Init(const mcs_proto::LoginRequest& login_request,
- net::StreamSocket* socket) override;
- virtual void Reset() override;
- virtual bool CanSendMessage() const override;
- virtual void SendMessage(const google::protobuf::MessageLite& message)
- override;
+ void Init(const mcs_proto::LoginRequest& login_request,
+ net::StreamSocket* socket) override;
+ void Reset() override;
+ bool CanSendMessage() const override;
+ void SendMessage(const google::protobuf::MessageLite& message) override;
// EXPECT's receipt of |message| via SendMessage(..).
void ExpectOutgoingMessage(const MCSMessage& message);
« no previous file with comments | « google_apis/gcm/engine/fake_connection_factory.h ('k') | google_apis/gcm/engine/gcm_store_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698