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/browser/password_autofill_manager_unittest.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/autofill/browser/password_autofill_manager_unittest.cc
diff --git a/components/autofill/browser/password_autofill_manager_unittest.cc b/components/autofill/browser/password_autofill_manager_unittest.cc
index bcdd6f0964a6ed309b2955966edfb1b10e0ae04a..919dc3217a9f141d3528c0b70a604da9252bf639 100644
--- a/components/autofill/browser/password_autofill_manager_unittest.cc
+++ b/components/autofill/browser/password_autofill_manager_unittest.cc
@@ -27,8 +27,8 @@ class PasswordAutofillManagerTest : public testing::Test {
virtual void SetUp() OVERRIDE {
// Add a preferred login and an additional login to the FillData.
- string16 username1 = ASCIIToUTF16(kAliceUsername);
- string16 password1 = ASCIIToUTF16(kAlicePassword);
+ base::string16 username1 = ASCIIToUTF16(kAliceUsername);
+ base::string16 password1 = ASCIIToUTF16(kAlicePassword);
username_field_.name = ASCIIToUTF16(kUsernameName);
username_field_.value = username1;

Powered by Google App Engine
This is Rietveld 408576698