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

Unified Diff: chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc

Issue 120983002: Update some uses of UTF conversions in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc
diff --git a/chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc b/chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc
index 74928a722f08007f52a353a3b4dc29739aa5b1b7..4a9b7bd7ff35b7edba4ea3d077c43e89a35c58ec 100644
--- a/chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc
+++ b/chrome/browser/sync/test/integration/performance/passwords_sync_perf_test.cc
@@ -54,7 +54,7 @@ void PasswordsSyncPerfTest::UpdateLogins(int profile) {
GetLogins(GetPasswordStore(profile), logins);
for (std::vector<autofill::PasswordForm>::iterator it = logins.begin();
it != logins.end(); ++it) {
- (*it).password_value = ASCIIToUTF16(NextPassword());
+ (*it).password_value = base::ASCIIToUTF16(NextPassword());
UpdateLogin(GetPasswordStore(profile), (*it));
}
}

Powered by Google App Engine
This is Rietveld 408576698