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 "chrome/browser/ui/autofill/data_model_wrapper.h" | 5 #include "chrome/browser/ui/autofill/data_model_wrapper.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 } | 84 } |
85 | 85 |
86 bool DataModelWrapper::FillFormStructure( | 86 bool DataModelWrapper::FillFormStructure( |
87 const std::vector<ServerFieldType>& types, | 87 const std::vector<ServerFieldType>& types, |
88 const FormStructure::InputFieldComparator& compare, | 88 const FormStructure::InputFieldComparator& compare, |
89 FormStructure* form_structure) const { | 89 FormStructure* form_structure) const { |
90 return form_structure->FillFields( | 90 return form_structure->FillFields( |
91 types, | 91 types, |
92 compare, | 92 compare, |
93 base::Bind(&DataModelWrapper::GetInfo, base::Unretained(this)), | 93 base::Bind(&DataModelWrapper::GetInfo, base::Unretained(this)), |
| 94 GetLanguageCode(), |
94 g_browser_process->GetApplicationLocale()); | 95 g_browser_process->GetApplicationLocale()); |
95 } | 96 } |
96 | 97 |
97 DataModelWrapper::DataModelWrapper() {} | 98 DataModelWrapper::DataModelWrapper() {} |
98 | 99 |
99 // AutofillProfileWrapper | 100 // AutofillProfileWrapper |
100 | 101 |
101 AutofillProfileWrapper::AutofillProfileWrapper(const AutofillProfile* profile) | 102 AutofillProfileWrapper::AutofillProfileWrapper(const AutofillProfile* profile) |
102 : profile_(profile), | 103 : profile_(profile), |
103 variant_group_(NO_GROUP), | 104 variant_group_(NO_GROUP), |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 } | 394 } |
394 | 395 |
395 return base::UTF8ToUTF16(address_->GetFieldValue(field)); | 396 return base::UTF8ToUTF16(address_->GetFieldValue(field)); |
396 } | 397 } |
397 | 398 |
398 const std::string& I18nAddressDataWrapper::GetLanguageCode() const { | 399 const std::string& I18nAddressDataWrapper::GetLanguageCode() const { |
399 return address_->language_code; | 400 return address_->language_code; |
400 } | 401 } |
401 | 402 |
402 } // namespace autofill | 403 } // namespace autofill |
OLD | NEW |