OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/autofill/core/browser/autofill_test_utils.h" | 5 #include "components/autofill/core/browser/autofill_test_utils.h" |
6 | 6 |
7 #include "base/guid.h" | 7 #include "base/guid.h" |
8 #include "base/prefs/pref_service.h" | 8 #include "base/prefs/pref_service.h" |
9 #include "base/prefs/pref_service_factory.h" | 9 #include "base/prefs/pref_service_factory.h" |
10 #include "base/prefs/testing_pref_store.h" | 10 #include "base/prefs/testing_pref_store.h" |
11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "components/autofill/core/browser/autofill_manager.h" | 12 #include "components/autofill/core/browser/autofill_manager.h" |
13 #include "components/autofill/core/browser/autofill_profile.h" | 13 #include "components/autofill/core/browser/autofill_profile.h" |
14 #include "components/autofill/core/browser/credit_card.h" | 14 #include "components/autofill/core/browser/credit_card.h" |
15 #include "components/autofill/core/browser/field_types.h" | 15 #include "components/autofill/core/browser/field_types.h" |
16 #include "components/autofill/core/common/autofill_pref_names.h" | 16 #include "components/autofill/core/common/autofill_pref_names.h" |
17 #include "components/autofill/core/common/form_data.h" | 17 #include "components/autofill/core/common/form_data.h" |
18 #include "components/autofill/core/common/form_field_data.h" | 18 #include "components/autofill/core/common/form_field_data.h" |
19 #include "components/encryptor/os_crypt.h" | 19 #include "components/encryptor/os_crypt.h" |
20 #include "components/user_prefs/pref_registry_syncable.h" | 20 #include "components/user_prefs/pref_registry_syncable.h" |
21 #include "components/user_prefs/user_prefs.h" | |
22 | 21 |
23 using base::ASCIIToUTF16; | 22 using base::ASCIIToUTF16; |
24 | 23 |
25 namespace autofill { | 24 namespace autofill { |
26 namespace test { | 25 namespace test { |
27 | 26 |
28 namespace { | 27 namespace { |
29 | 28 |
30 const char kSettingsOrigin[] = "Chrome settings"; | 29 const char kSettingsOrigin[] = "Chrome settings"; |
31 | 30 |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 #endif | 209 #endif |
211 | 210 |
212 // Disable auxiliary profiles for unit testing. These reach out to system | 211 // Disable auxiliary profiles for unit testing. These reach out to system |
213 // services on the Mac. | 212 // services on the Mac. |
214 if (prefs) | 213 if (prefs) |
215 prefs->SetBoolean(prefs::kAutofillAuxiliaryProfilesEnabled, false); | 214 prefs->SetBoolean(prefs::kAutofillAuxiliaryProfilesEnabled, false); |
216 } | 215 } |
217 | 216 |
218 } // namespace test | 217 } // namespace test |
219 } // namespace autofill | 218 } // namespace autofill |
OLD | NEW |