| 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 { | 9 namespace browser_sync { |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 TestProfileSyncService::~TestProfileSyncService() {} | 24 TestProfileSyncService::~TestProfileSyncService() {} |
| 25 | 25 |
| 26 void TestProfileSyncService::OnConfigureDone( | 26 void TestProfileSyncService::OnConfigureDone( |
| 27 const syncer::DataTypeManager::ConfigureResult& result) { | 27 const syncer::DataTypeManager::ConfigureResult& result) { |
| 28 ProfileSyncService::OnConfigureDone(result); | 28 ProfileSyncService::OnConfigureDone(result); |
| 29 base::MessageLoop::current()->QuitWhenIdle(); | 29 base::MessageLoop::current()->QuitWhenIdle(); |
| 30 } | 30 } |
| 31 | 31 |
| 32 syncer::UserShare* TestProfileSyncService::GetUserShare() const { | 32 syncer::UserShare* TestProfileSyncService::GetUserShare() const { |
| 33 return backend_->GetUserShare(); | 33 return engine_->GetUserShare(); |
| 34 } | 34 } |
| 35 | 35 |
| 36 } // namespace browser_sync | 36 } // namespace browser_sync |
| OLD | NEW |