diff options
Diffstat (limited to 'components/proximity_auth/connection_observer.h')
-rw-r--r-- | components/proximity_auth/connection_observer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/proximity_auth/connection_observer.h b/components/proximity_auth/connection_observer.h index 89bf974..5357890 100644 --- a/components/proximity_auth/connection_observer.h +++ b/components/proximity_auth/connection_observer.h @@ -18,18 +18,18 @@ class ConnectionObserver { // |new_status|. virtual void OnConnectionStatusChanged(const Connection& connection, Connection::Status old_status, - Connection::Status new_status) {} + Connection::Status new_status) = 0; // Called when a |message| is received from a remote device over the // |connection|. virtual void OnMessageReceived(const Connection& connection, - const WireMessage& message) {} + const WireMessage& message) = 0; // Called after a |message| is sent to the remote device over the // |connection|. |success| is |true| iff the message is sent successfully. virtual void OnSendCompleted(const Connection& connection, const WireMessage& message, - bool success) {} + bool success) = 0; }; } // namespace proximity_auth |