OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/browser/autofill/personal_data_manager.h" | 5 #include "chrome/browser/autofill/personal_data_manager.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/string_number_conversions.h" | 11 #include "base/string_number_conversions.h" |
12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
13 #include "chrome/browser/autofill/autofill_field.h" | 13 #include "chrome/browser/autofill/autofill_field.h" |
14 #include "chrome/browser/autofill/form_structure.h" | 14 #include "chrome/browser/autofill/form_structure.h" |
15 #include "chrome/browser/autofill/phone_number.h" | 15 #include "chrome/browser/autofill/phone_number.h" |
16 #include "chrome/browser/browser_thread.h" | 16 #include "chrome/browser/browser_thread.h" |
17 #include "chrome/browser/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
18 #include "chrome/browser/webdata/web_data_service.h" | 18 #include "chrome/browser/webdata/web_data_service.h" |
19 #include "chrome/browser/prefs/pref_service.h" | 19 #include "chrome/browser/prefs/pref_service.h" |
20 #include "chrome/common/pref_names.h" | 20 #include "chrome/common/pref_names.h" |
21 | 21 |
22 namespace { | 22 namespace { |
23 | 23 |
24 // The minimum number of fields that must contain user data and have known types | 24 // The minimum number of fields that must contain user data and have known types |
25 // before AutoFill will attempt to import the data into a profile or a credit | 25 // before AutoFill will attempt to import the data into a profile or a credit |
26 // card. | 26 // card. |
27 const int kMinProfileImportSize = 3; | 27 const int kMinProfileImportSize = 3; |
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 } | 807 } |
808 | 808 |
809 creditcards.push_back(**iter); | 809 creditcards.push_back(**iter); |
810 } | 810 } |
811 | 811 |
812 if (!merged) | 812 if (!merged) |
813 creditcards.push_back(*imported_credit_card_); | 813 creditcards.push_back(*imported_credit_card_); |
814 | 814 |
815 SetCreditCards(&creditcards); | 815 SetCreditCards(&creditcards); |
816 } | 816 } |
OLD | NEW |