Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Side by Side Diff: components/browser_sync/test_profile_sync_service.cc

Issue 2551023006: [Sync] SyncEngine 1.5: Fix all backend references in PSS. (Closed)
Patch Set: Fix Android. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/browser_sync/profile_sync_service_startup_unittest.cc ('k') | components/precache/content/precache_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698