OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/ntp_snippets/ntp_snippets_test_utils.h" | 5 #include "components/ntp_snippets/ntp_snippets_test_utils.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 | 8 |
9 #include "components/prefs/pref_registry_simple.h" | 9 #include "components/prefs/pref_registry_simple.h" |
10 #include "components/prefs/testing_pref_service.h" | 10 #include "components/prefs/testing_pref_service.h" |
11 #include "components/signin/core/browser/account_tracker_service.h" | 11 #include "components/signin/core/browser/account_tracker_service.h" |
12 #include "components/signin/core/browser/fake_signin_manager.h" | 12 #include "components/signin/core/browser/fake_signin_manager.h" |
13 #include "components/signin/core/browser/test_signin_client.h" | 13 #include "components/signin/core/browser/test_signin_client.h" |
14 #include "components/signin/core/common/signin_pref_names.h" | 14 #include "components/signin/core/common/signin_pref_names.h" |
15 #include "components/sync_driver/fake_sync_service.h" | 15 #include "components/sync/driver/fake_sync_service.h" |
16 | 16 |
17 namespace ntp_snippets { | 17 namespace ntp_snippets { |
18 namespace test { | 18 namespace test { |
19 | 19 |
20 MockSyncService::MockSyncService() | 20 MockSyncService::MockSyncService() |
21 : can_sync_start_(true), | 21 : can_sync_start_(true), |
22 is_sync_active_(true), | 22 is_sync_active_(true), |
23 configuration_done_(true), | 23 configuration_done_(true), |
24 is_encrypt_everything_enabled_(false), | 24 is_encrypt_everything_enabled_(false), |
25 active_data_types_(syncer::HISTORY_DELETE_DIRECTIVES) {} | 25 active_data_types_(syncer::HISTORY_DELETE_DIRECTIVES) {} |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 ResetSigninManager(); | 65 ResetSigninManager(); |
66 } | 66 } |
67 | 67 |
68 void NTPSnippetsTestBase::ResetSigninManager() { | 68 void NTPSnippetsTestBase::ResetSigninManager() { |
69 fake_signin_manager_.reset( | 69 fake_signin_manager_.reset( |
70 new FakeSigninManagerBase(signin_client_.get(), account_tracker_.get())); | 70 new FakeSigninManagerBase(signin_client_.get(), account_tracker_.get())); |
71 } | 71 } |
72 | 72 |
73 } // namespace test | 73 } // namespace test |
74 } // namespace ntp_snippets | 74 } // namespace ntp_snippets |
OLD | NEW |