OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/driver/fake_sync_service.h" | 5 #include "components/sync/driver/fake_sync_service.h" |
6 | 6 |
7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
8 #include "base/values.h" | 8 #include "base/values.h" |
9 #include "components/sync/core/base_transaction.h" | 9 #include "components/sync/core/base_transaction.h" |
10 #include "components/sync/core/user_share.h" | 10 #include "components/sync/core/user_share.h" |
11 #include "components/sync/engine/cycle/sync_cycle_snapshot.h" | 11 #include "components/sync/engine/cycle/sync_cycle_snapshot.h" |
12 | 12 |
13 namespace sync_driver { | 13 namespace sync_driver { |
14 | 14 |
15 FakeSyncService::FakeSyncService() | 15 FakeSyncService::FakeSyncService() |
16 : error_(GoogleServiceAuthError::NONE), | 16 : error_(GoogleServiceAuthError::NONE), |
17 user_share_(base::WrapUnique(new syncer::UserShare())) {} | 17 user_share_(base::MakeUnique<syncer::UserShare>()) {} |
18 | 18 |
19 FakeSyncService::~FakeSyncService() {} | 19 FakeSyncService::~FakeSyncService() {} |
20 | 20 |
21 bool FakeSyncService::IsFirstSetupComplete() const { | 21 bool FakeSyncService::IsFirstSetupComplete() const { |
22 return false; | 22 return false; |
23 } | 23 } |
24 | 24 |
25 bool FakeSyncService::IsSyncAllowed() const { | 25 bool FakeSyncService::IsSyncAllowed() const { |
26 return false; | 26 return false; |
27 } | 27 } |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 syncer::TypeDebugInfoObserver* observer) {} | 206 syncer::TypeDebugInfoObserver* observer) {} |
207 | 207 |
208 base::WeakPtr<syncer::JsController> FakeSyncService::GetJsController() { | 208 base::WeakPtr<syncer::JsController> FakeSyncService::GetJsController() { |
209 return base::WeakPtr<syncer::JsController>(); | 209 return base::WeakPtr<syncer::JsController>(); |
210 } | 210 } |
211 | 211 |
212 void FakeSyncService::GetAllNodes( | 212 void FakeSyncService::GetAllNodes( |
213 const base::Callback<void(std::unique_ptr<base::ListValue>)>& callback) {} | 213 const base::Callback<void(std::unique_ptr<base::ListValue>)>& callback) {} |
214 | 214 |
215 } // namespace sync_driver | 215 } // namespace sync_driver |
OLD | NEW |