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

Unified Diff: components/autofill/browser/form_field.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/browser/form_field.h
diff --git a/components/autofill/browser/form_field.h b/components/autofill/browser/form_field.h
index 8b9765d136dc562076da4db0b1af3ce3eccf946f..1c24904a6213d60272337c50d8a1fe91abc35477 100644
--- a/components/autofill/browser/form_field.h
+++ b/components/autofill/browser/form_field.h
@@ -54,7 +54,7 @@ class FormField {
// Attempts to parse a form field with the given pattern. Returns true on
// success and fills |match| with a pointer to the field.
static bool ParseField(AutofillScanner* scanner,
- const string16& pattern,
+ const base::string16& pattern,
const AutofillField** match);
// Parses the stream of fields in |scanner| with regular expression |pattern|
@@ -63,7 +63,7 @@ class FormField {
// A |true| result is returned in the case of a successful match, false
// otherwise.
static bool ParseFieldSpecifics(AutofillScanner* scanner,
- const string16& pattern,
+ const base::string16& pattern,
int match_type,
const AutofillField** match);
@@ -95,14 +95,14 @@ class FormField {
// Returns |true| if a match is found according to |match_type|, and |false|
// otherwise.
static bool MatchAndAdvance(AutofillScanner* scanner,
- const string16& pattern,
+ const base::string16& pattern,
int match_type,
const AutofillField** match);
// Matches the regular expression |pattern| against the components of |field|
// as specified in the |match_type| bit field (see |MatchType|).
static bool Match(const AutofillField* field,
- const string16& pattern,
+ const base::string16& pattern,
int match_type);
// Perform a "pass" over the |fields| where each pass uses the supplied

Powered by Google App Engine
This is Rietveld 408576698