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

Unified Diff: components/autofill/browser/autofill_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/autofill_field.h
diff --git a/components/autofill/browser/autofill_field.h b/components/autofill/browser/autofill_field.h
index aa43091099fc7cb3201f5882f0f662145548302a..e9619195ce57811b510ca8c71ae704e82447b1f5 100644
--- a/components/autofill/browser/autofill_field.h
+++ b/components/autofill/browser/autofill_field.h
@@ -21,10 +21,10 @@ class AutofillField : public FormFieldData {
};
AutofillField();
- AutofillField(const FormFieldData& field, const string16& unique_name);
+ AutofillField(const FormFieldData& field, const base::string16& unique_name);
virtual ~AutofillField();
- const string16& unique_name() const { return unique_name_; }
+ const base::string16& unique_name() const { return unique_name_; }
const std::string& section() const { return section_; }
AutofillFieldType heuristic_type() const { return heuristic_type_; }
@@ -61,7 +61,7 @@ class AutofillField : public FormFieldData {
private:
// The unique name of this field, generated by Autofill.
- string16 unique_name_;
+ base::string16 unique_name_;
// The unique identifier for the section (e.g. billing vs. shipping address)
// that this field belongs to.

Powered by Google App Engine
This is Rietveld 408576698