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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // input type in a 32-bit hash. | 58 // input type in a 32-bit hash. |
59 std::string FieldSignature() const; | 59 std::string FieldSignature() const; |
60 | 60 |
61 // Returns true if the field type has been determined (without the text in the | 61 // Returns true if the field type has been determined (without the text in the |
62 // field). | 62 // field). |
63 bool IsFieldFillable() const; | 63 bool IsFieldFillable() const; |
64 | 64 |
65 void set_default_value(const std::string& value) { default_value_ = value; } | 65 void set_default_value(const std::string& value) { default_value_ = value; } |
66 const std::string& default_value() const { return default_value_; } | 66 const std::string& default_value() const { return default_value_; } |
67 | 67 |
68 // Set |field_data|'s value to |value|. Uses |field|, |address_language_code|, | 68 // Set |field_data|'s value to |value|. Uses |field| and |app_locale| as |
69 // and |app_locale| as hints when filling exceptional cases like phone number | 69 // hints when filling exceptional cases like phone number values and <select> |
70 // values and <select> fields. Returns |true| if the field has been filled, | 70 // fields. Returns |true| if the field has been filled, |false| otherwise. |
71 // |false| otherwise. | |
72 static bool FillFormField(const AutofillField& field, | 71 static bool FillFormField(const AutofillField& field, |
73 const base::string16& value, | 72 const base::string16& value, |
74 const std::string& address_language_code, | |
75 const std::string& app_locale, | 73 const std::string& app_locale, |
76 FormFieldData* field_data); | 74 FormFieldData* field_data); |
77 | 75 |
78 private: | 76 private: |
79 // The unique name of this field, generated by Autofill. | 77 // The unique name of this field, generated by Autofill. |
80 base::string16 unique_name_; | 78 base::string16 unique_name_; |
81 | 79 |
82 // The unique identifier for the section (e.g. billing vs. shipping address) | 80 // The unique identifier for the section (e.g. billing vs. shipping address) |
83 // that this field belongs to. | 81 // that this field belongs to. |
84 std::string section_; | 82 std::string section_; |
(...skipping 19 matching lines...) Expand all Loading... |
104 | 102 |
105 // The default value returned by the Autofill server. | 103 // The default value returned by the Autofill server. |
106 std::string default_value_; | 104 std::string default_value_; |
107 | 105 |
108 DISALLOW_COPY_AND_ASSIGN(AutofillField); | 106 DISALLOW_COPY_AND_ASSIGN(AutofillField); |
109 }; | 107 }; |
110 | 108 |
111 } // namespace autofill | 109 } // namespace autofill |
112 | 110 |
113 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_FIELD_H_ | 111 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_FIELD_H_ |
OLD | NEW |