| 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 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_FIELD_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_FIELD_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_FIELD_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_FIELD_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // Set |field_data|'s value to |value|. Uses |field|, |address_language_code|, | 68 // Set |field_data|'s value to |value|. Uses |field|, |address_language_code|, |
| 69 // and |app_locale| as hints when filling exceptional cases like phone number | 69 // and |app_locale| as hints when filling exceptional cases like phone number |
| 70 // values and <select> fields. Returns |true| if the field has been filled, | 70 // values and <select> fields. Returns |true| if the field has been filled, |
| 71 // |false| otherwise. | 71 // |false| otherwise. |
| 72 static bool FillFormField(const AutofillField& field, | 72 static bool FillFormField(const AutofillField& field, |
| 73 const base::string16& value, | 73 const base::string16& value, |
| 74 const std::string& address_language_code, | 74 const std::string& address_language_code, |
| 75 const std::string& app_locale, | 75 const std::string& app_locale, |
| 76 FormFieldData* field_data); | 76 FormFieldData* field_data); |
| 77 | 77 |
| 78 // Returns the phone number value for the given |field|. The returned value |
| 79 // might be |number|, or could possibly be a prefix or suffix of |number| |
| 80 // if that's appropriate for the field. |
| 81 static base::string16 GetPhoneNumberValue(const AutofillField& field, |
| 82 const base::string16& number, |
| 83 const FormFieldData& field_data); |
| 84 |
| 78 private: | 85 private: |
| 79 // The unique name of this field, generated by Autofill. | 86 // The unique name of this field, generated by Autofill. |
| 80 base::string16 unique_name_; | 87 base::string16 unique_name_; |
| 81 | 88 |
| 82 // The unique identifier for the section (e.g. billing vs. shipping address) | 89 // The unique identifier for the section (e.g. billing vs. shipping address) |
| 83 // that this field belongs to. | 90 // that this field belongs to. |
| 84 std::string section_; | 91 std::string section_; |
| 85 | 92 |
| 86 // The type of the field, as determined by the Autofill server. | 93 // The type of the field, as determined by the Autofill server. |
| 87 ServerFieldType server_type_; | 94 ServerFieldType server_type_; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 104 | 111 |
| 105 // The default value returned by the Autofill server. | 112 // The default value returned by the Autofill server. |
| 106 std::string default_value_; | 113 std::string default_value_; |
| 107 | 114 |
| 108 DISALLOW_COPY_AND_ASSIGN(AutofillField); | 115 DISALLOW_COPY_AND_ASSIGN(AutofillField); |
| 109 }; | 116 }; |
| 110 | 117 |
| 111 } // namespace autofill | 118 } // namespace autofill |
| 112 | 119 |
| 113 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_FIELD_H_ | 120 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_FIELD_H_ |
| OLD | NEW |