| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync/engine/fake_sync_engine.h" | 5 #include "components/sync/engine/fake_sync_engine.h" |
| 6 | 6 |
| 7 #include "components/sync/engine/activation_context.h" | 7 #include "components/sync/engine/activation_context.h" |
| 8 #include "components/sync/engine/sync_engine_host.h" | 8 #include "components/sync/engine/sync_engine_host.h" |
| 9 | 9 |
| 10 namespace syncer { | 10 namespace syncer { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 const std::string& sync_user_agent, | 22 const std::string& sync_user_agent, |
| 23 const SyncCredentials& credentials, | 23 const SyncCredentials& credentials, |
| 24 bool delete_sync_data_folder, | 24 bool delete_sync_data_folder, |
| 25 bool enable_local_sync_backend, | 25 bool enable_local_sync_backend, |
| 26 const base::FilePath& local_sync_backend_folder, | 26 const base::FilePath& local_sync_backend_folder, |
| 27 std::unique_ptr<SyncManagerFactory> sync_manager_factory, | 27 std::unique_ptr<SyncManagerFactory> sync_manager_factory, |
| 28 const WeakHandle<UnrecoverableErrorHandler>& unrecoverable_error_handler, | 28 const WeakHandle<UnrecoverableErrorHandler>& unrecoverable_error_handler, |
| 29 const base::Closure& report_unrecoverable_error_function, | 29 const base::Closure& report_unrecoverable_error_function, |
| 30 const HttpPostProviderFactoryGetter& http_post_provider_factory_getter, | 30 const HttpPostProviderFactoryGetter& http_post_provider_factory_getter, |
| 31 std::unique_ptr<SyncEncryptionHandler::NigoriState> saved_nigori_state) { | 31 std::unique_ptr<SyncEncryptionHandler::NigoriState> saved_nigori_state) { |
| 32 host->OnBackendInitialized(WeakHandle<JsBackend>(), | 32 host->OnEngineInitialized(WeakHandle<JsBackend>(), |
| 33 WeakHandle<DataTypeDebugInfoListener>(), | 33 WeakHandle<DataTypeDebugInfoListener>(), |
| 34 kTestCacheGuid, !fail_initial_download_); | 34 kTestCacheGuid, !fail_initial_download_); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void FakeSyncEngine::TriggerRefresh(const ModelTypeSet& types) {} | 37 void FakeSyncEngine::TriggerRefresh(const ModelTypeSet& types) {} |
| 38 | 38 |
| 39 void FakeSyncEngine::UpdateCredentials(const SyncCredentials& credentials) {} | 39 void FakeSyncEngine::UpdateCredentials(const SyncCredentials& credentials) {} |
| 40 | 40 |
| 41 void FakeSyncEngine::StartSyncingWithServer() {} | 41 void FakeSyncEngine::StartSyncingWithServer() {} |
| 42 | 42 |
| 43 void FakeSyncEngine::SetEncryptionPassphrase(const std::string& passphrase, | 43 void FakeSyncEngine::SetEncryptionPassphrase(const std::string& passphrase, |
| 44 bool is_explicit) {} | 44 bool is_explicit) {} |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 127 |
| 128 void FakeSyncEngine::ClearServerData( | 128 void FakeSyncEngine::ClearServerData( |
| 129 const SyncManager::ClearServerDataCallback& callback) { | 129 const SyncManager::ClearServerDataCallback& callback) { |
| 130 callback.Run(); | 130 callback.Run(); |
| 131 } | 131 } |
| 132 | 132 |
| 133 void FakeSyncEngine::OnCookieJarChanged(bool account_mismatch, bool empty_jar) { | 133 void FakeSyncEngine::OnCookieJarChanged(bool account_mismatch, bool empty_jar) { |
| 134 } | 134 } |
| 135 | 135 |
| 136 } // namespace syncer | 136 } // namespace syncer |
| OLD | NEW |