| Index: components/autofill/common/form_field_data.h
|
| diff --git a/components/autofill/common/form_field_data.h b/components/autofill/common/form_field_data.h
|
| index 6d0d2f6491a073b86875514ceb1ae66f556f934c..f77c85dcd4a7b46438c505f252aef132f3779178 100644
|
| --- a/components/autofill/common/form_field_data.h
|
| +++ b/components/autofill/common/form_field_data.h
|
| @@ -23,9 +23,9 @@ struct FormFieldData {
|
| // Comparison operator exposed for STL map. Uses label, then name to sort.
|
| bool operator<(const FormFieldData& field) const;
|
|
|
| - string16 label;
|
| - string16 name;
|
| - string16 value;
|
| + base::string16 label;
|
| + base::string16 name;
|
| + base::string16 value;
|
| std::string form_control_type;
|
| std::string autocomplete_attribute;
|
| size_t max_length;
|
| @@ -37,8 +37,8 @@ struct FormFieldData {
|
|
|
| // For the HTML snippet |<option value="US">United States</option>|, the
|
| // value is "US" and the contents are "United States".
|
| - std::vector<string16> option_values;
|
| - std::vector<string16> option_contents;
|
| + std::vector<base::string16> option_values;
|
| + std::vector<base::string16> option_contents;
|
| };
|
|
|
| // So we can compare FormFieldDatas with EXPECT_EQ().
|
|
|