diff options
Diffstat (limited to 'chrome/browser/sync/glue/sync_backend_host_mock.cc')
-rw-r--r-- | chrome/browser/sync/glue/sync_backend_host_mock.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/sync/glue/sync_backend_host_mock.cc b/chrome/browser/sync/glue/sync_backend_host_mock.cc index 7a0eeeb..38f3ced 100644 --- a/chrome/browser/sync/glue/sync_backend_host_mock.cc +++ b/chrome/browser/sync/glue/sync_backend_host_mock.cc @@ -8,6 +8,8 @@ namespace browser_sync { +const char kTestCacheGuid[] = "test-guid"; + SyncBackendHostMock::SyncBackendHostMock() : fail_initial_download_(false) {} SyncBackendHostMock::~SyncBackendHostMock() {} @@ -26,6 +28,7 @@ void SyncBackendHostMock::Initialize( frontend->OnBackendInitialized( syncer::WeakHandle<syncer::JsBackend>(), syncer::WeakHandle<syncer::DataTypeDebugInfoListener>(), + kTestCacheGuid, !fail_initial_download_); } |