diff options
author | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-21 22:14:35 +0000 |
---|---|---|
committer | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-21 22:14:35 +0000 |
commit | eb370fc0fba62ea44db5c35514fb3223523928cc (patch) | |
tree | 314febd8e19760c68cd7a20c1fd95bc5a26c1f97 /sync/internal_api/js_sync_manager_observer.cc | |
parent | 560b54e7a49100618417e59a0f1589c864816b6a (diff) | |
download | chromium_src-eb370fc0fba62ea44db5c35514fb3223523928cc.zip chromium_src-eb370fc0fba62ea44db5c35514fb3223523928cc.tar.gz chromium_src-eb370fc0fba62ea44db5c35514fb3223523928cc.tar.bz2 |
sync: Expose ProtocolEvents on ProfileSyncService
Adds code to the sync engine to have it generate protocol events when it
contacts the server. These events are then sent through the
SyncSession, SyncManager, SyncBackendHostCore, SyncBackendHost, and
finally to the ProfileSyncService.
Objects on the UI thread can register with the ProfileSyncService as
observers of these events, though this CL does not introduce any of
these listeners.
BUG=349301
Review URL: https://codereview.chromium.org/203463005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258685 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/internal_api/js_sync_manager_observer.cc')
-rw-r--r-- | sync/internal_api/js_sync_manager_observer.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sync/internal_api/js_sync_manager_observer.cc b/sync/internal_api/js_sync_manager_observer.cc index 57df9d3..b5f8452 100644 --- a/sync/internal_api/js_sync_manager_observer.cc +++ b/sync/internal_api/js_sync_manager_observer.cc @@ -60,6 +60,9 @@ void JsSyncManagerObserver::OnActionableError( JsEventDetails(&details)); } +void JsSyncManagerObserver::OnProtocolEvent( + const ProtocolEvent& event) { } + void JsSyncManagerObserver::OnMigrationRequested(ModelTypeSet types) { } void JsSyncManagerObserver::OnInitializationComplete( |