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

Unified Diff: components/proximity_auth/client.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/proximity_auth/client.h
diff --git a/components/proximity_auth/client.h b/components/proximity_auth/client.h
index cea47ee8006cf6efa80c2f56db22d55d8ce80e97..5cd5107a1a55c5af8adc7980a5980282939cb8b3 100644
--- a/components/proximity_auth/client.h
+++ b/components/proximity_auth/client.h
@@ -91,15 +91,14 @@ class Client : public ConnectionObserver {
void HandleUnlockResponseMessage(const base::DictionaryValue& message);
// ConnectionObserver:
- virtual void OnConnectionStatusChanged(
- const Connection& connection,
- Connection::Status old_status,
- Connection::Status new_status) override;
- virtual void OnMessageReceived(const Connection& connection,
- const WireMessage& wire_message) override;
- virtual void OnSendCompleted(const Connection& connection,
- const WireMessage& wire_message,
- bool success) override;
+ void OnConnectionStatusChanged(const Connection& connection,
+ Connection::Status old_status,
+ Connection::Status new_status) override;
+ void OnMessageReceived(const Connection& connection,
+ const WireMessage& wire_message) override;
+ void OnSendCompleted(const Connection& connection,
+ const WireMessage& wire_message,
+ bool success) override;
// The connection used to send and receive events and status updates.
scoped_ptr<Connection> connection_;
« no previous file with comments | « components/proximity_auth/bluetooth_connection_unittest.cc ('k') | components/proximity_auth/client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698