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

Unified Diff: components/proximity_auth/cryptauth/cryptauth_device_manager.h

Issue 1372283002: Hook up ProximityAuthSystem in EasyUnlockService. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth_connection
Patch Set: remove log Created 5 years, 3 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/cryptauth/cryptauth_device_manager.h
diff --git a/components/proximity_auth/cryptauth/cryptauth_device_manager.h b/components/proximity_auth/cryptauth/cryptauth_device_manager.h
index 0c615712a1a6a99975440fdc676eeb7f3243b606..a9286a8f7fe5c661faed7d555bd6afca46029fee 100644
--- a/components/proximity_auth/cryptauth/cryptauth_device_manager.h
+++ b/components/proximity_auth/cryptauth/cryptauth_device_manager.h
@@ -44,13 +44,13 @@ class CryptAuthDeviceManager : public SyncScheduler::Delegate,
class Observer {
public:
// Called when a sync attempt is started.
- virtual void OnSyncStarted() = 0;
+ virtual void OnSyncStarted() {}
// Called when a sync attempt finishes with the |success| of the request.
// |devices_changed| specifies if the sync caused the stored unlock keys to
// change.
virtual void OnSyncFinished(SyncResult sync_result,
- DeviceChangeResult device_change_result) = 0;
+ DeviceChangeResult device_change_result) {}
virtual ~Observer() {}
};

Powered by Google App Engine
This is Rietveld 408576698