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

Unified Diff: components/autofill/common/form_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_data.h
diff --git a/components/autofill/common/form_data.h b/components/autofill/common/form_data.h
index 01ab98a7c0fb1ece19a6343363eeab5083a67b26..8d683beb6381b04d16c3357e5351384b0bd5d21f 100644
--- a/components/autofill/common/form_data.h
+++ b/components/autofill/common/form_data.h
@@ -23,9 +23,9 @@ struct FormData {
bool operator!=(const FormData& form) const;
// The name of the form.
- string16 name;
+ base::string16 name;
// GET or POST.
- string16 method;
+ base::string16 method;
// The URL (minus query parameters) containing the form.
GURL origin;
// The action target of the form.

Powered by Google App Engine
This is Rietveld 408576698