Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(353)

Unified Diff: components/autofill/common/form_field_data.h

Issue 13973004: Convert string16 -> base::string16 in components/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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().

Powered by Google App Engine
This is Rietveld 408576698