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

Unified Diff: components/webdata/autofill/autofill_entry.cc

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/webdata/autofill/autofill_entry.cc
diff --git a/components/webdata/autofill/autofill_entry.cc b/components/webdata/autofill/autofill_entry.cc
index dda5cf570f2502e4fb2c4006efb69a8c9a6260b9..68dfa0a6259bab73d44617de46f9470990542df7 100644
--- a/components/webdata/autofill/autofill_entry.cc
+++ b/components/webdata/autofill/autofill_entry.cc
@@ -19,7 +19,8 @@ const int64 kExpirationPeriodInDays = 60;
AutofillKey::AutofillKey() {}
-AutofillKey::AutofillKey(const string16& name, const string16& value)
+AutofillKey::AutofillKey(const base::string16& name,
+ const base::string16& value)
: name_(name),
value_(value) {
}

Powered by Google App Engine
This is Rietveld 408576698