| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/browser_sync/test_profile_sync_service.h" | 5 #include "components/browser_sync/test_profile_sync_service.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 namespace browser_sync { |
| 10 |
| 9 syncer::TestIdFactory* TestProfileSyncService::id_factory() { | 11 syncer::TestIdFactory* TestProfileSyncService::id_factory() { |
| 10 return &id_factory_; | 12 return &id_factory_; |
| 11 } | 13 } |
| 12 | 14 |
| 13 syncer::WeakHandle<syncer::JsEventHandler> | 15 syncer::WeakHandle<syncer::JsEventHandler> |
| 14 TestProfileSyncService::GetJsEventHandler() { | 16 TestProfileSyncService::GetJsEventHandler() { |
| 15 return syncer::WeakHandle<syncer::JsEventHandler>(); | 17 return syncer::WeakHandle<syncer::JsEventHandler>(); |
| 16 } | 18 } |
| 17 | 19 |
| 18 TestProfileSyncService::TestProfileSyncService( | 20 TestProfileSyncService::TestProfileSyncService( |
| 19 ProfileSyncService::InitParams init_params) | 21 ProfileSyncService::InitParams init_params) |
| 20 : ProfileSyncService(std::move(init_params)) {} | 22 : ProfileSyncService(std::move(init_params)) {} |
| 21 | 23 |
| 22 TestProfileSyncService::~TestProfileSyncService() {} | 24 TestProfileSyncService::~TestProfileSyncService() {} |
| 23 | 25 |
| 24 void TestProfileSyncService::OnConfigureDone( | 26 void TestProfileSyncService::OnConfigureDone( |
| 25 const sync_driver::DataTypeManager::ConfigureResult& result) { | 27 const sync_driver::DataTypeManager::ConfigureResult& result) { |
| 26 ProfileSyncService::OnConfigureDone(result); | 28 ProfileSyncService::OnConfigureDone(result); |
| 27 base::MessageLoop::current()->QuitWhenIdle(); | 29 base::MessageLoop::current()->QuitWhenIdle(); |
| 28 } | 30 } |
| 29 | 31 |
| 30 syncer::UserShare* TestProfileSyncService::GetUserShare() const { | 32 syncer::UserShare* TestProfileSyncService::GetUserShare() const { |
| 31 return backend_->GetUserShare(); | 33 return backend_->GetUserShare(); |
| 32 } | 34 } |
| 35 |
| 36 } // namespace browser_sync |
| OLD | NEW |