Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / components / proximity_auth / connection_observer.h
index 5357890..89bf974 100644 (file)
@@ -18,18 +18,18 @@ class ConnectionObserver {
   // |new_status|.
   virtual void OnConnectionStatusChanged(const Connection& connection,
                                          Connection::Status old_status,
-                                         Connection::Status new_status) = 0;
+                                         Connection::Status new_status) {}
 
   // Called when a |message| is received from a remote device over the
   // |connection|.
   virtual void OnMessageReceived(const Connection& connection,
-                                 const WireMessage& message) = 0;
+                                 const WireMessage& message) {}
 
   // 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) = 0;
+                               bool success) {}
 };
 
 }  // namespace proximity_auth