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/profile_sync_components_factory_impl.h" | 5 #include "components/browser_sync/profile_sync_components_factory_impl.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/command_line.h" | |
10 #include "base/debug/dump_without_crashing.h" | 9 #include "base/debug/dump_without_crashing.h" |
11 #include "base/feature_list.h" | 10 #include "base/feature_list.h" |
12 #include "base/memory/ptr_util.h" | 11 #include "base/memory/ptr_util.h" |
13 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
14 #include "build/build_config.h" | 13 #include "build/build_config.h" |
15 #include "components/autofill/core/browser/autofill_wallet_data_type_controller.
h" | 14 #include "components/autofill/core/browser/autofill_wallet_data_type_controller.
h" |
16 #include "components/autofill/core/browser/webdata/autofill_data_type_controller
.h" | 15 #include "components/autofill/core/browser/webdata/autofill_data_type_controller
.h" |
17 #include "components/autofill/core/browser/webdata/autofill_profile_data_type_co
ntroller.h" | 16 #include "components/autofill/core/browser/webdata/autofill_profile_data_type_co
ntroller.h" |
18 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" | 17 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
19 #include "components/autofill/core/common/autofill_pref_names.h" | 18 #include "components/autofill/core/common/autofill_pref_names.h" |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 | 418 |
420 // static | 419 // static |
421 void ProfileSyncComponentsFactoryImpl::OverridePrefsForUssTest(bool use_uss) { | 420 void ProfileSyncComponentsFactoryImpl::OverridePrefsForUssTest(bool use_uss) { |
422 override_prefs_controller_to_uss_for_test_ = use_uss; | 421 override_prefs_controller_to_uss_for_test_ = use_uss; |
423 } | 422 } |
424 | 423 |
425 bool ProfileSyncComponentsFactoryImpl:: | 424 bool ProfileSyncComponentsFactoryImpl:: |
426 override_prefs_controller_to_uss_for_test_ = false; | 425 override_prefs_controller_to_uss_for_test_ = false; |
427 | 426 |
428 } // namespace browser_sync | 427 } // namespace browser_sync |
OLD | NEW |