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

Unified Diff: chrome/test/live_sync/live_passwords_sync_test.cc

Issue 7016011: iwyu: Include stringprintf.h where appropriate, part 3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Win fix. Created 9 years, 7 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
« no previous file with comments | « chrome/service/cloud_print/cloud_print_helpers_unittest.cc ('k') | chrome/test/live_sync/live_sync_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/live_sync/live_passwords_sync_test.cc
diff --git a/chrome/test/live_sync/live_passwords_sync_test.cc b/chrome/test/live_sync/live_passwords_sync_test.cc
index b56f56e60bf068617a205cbc9a85b4655a15817e..ba67b4ea1b211738f24e47bdfc7c9e5025b748a0 100644
--- a/chrome/test/live_sync/live_passwords_sync_test.cc
+++ b/chrome/test/live_sync/live_passwords_sync_test.cc
@@ -4,7 +4,7 @@
#include "chrome/test/live_sync/live_passwords_sync_test.h"
-#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "base/synchronization/waitable_event.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/password_manager/password_store_consumer.h"
@@ -105,9 +105,10 @@ PasswordStore* LivePasswordsSyncTest::GetVerifierPasswordStore() {
PasswordForm LivePasswordsSyncTest::CreateTestPasswordForm(int index) {
PasswordForm form;
form.signon_realm = kFakeSignonRealm;
- form.origin = GURL(StringPrintf("http://fake-domain%d.google.com/", index));
- form.username_value = ASCIIToUTF16(StringPrintf("username%d", index));
- form.password_value = ASCIIToUTF16(StringPrintf("password%d", index));
+ form.origin =
+ GURL(base::StringPrintf("http://fake-domain%d.google.com/", index));
+ form.username_value = ASCIIToUTF16(base::StringPrintf("username%d", index));
+ form.password_value = ASCIIToUTF16(base::StringPrintf("password%d", index));
return form;
}
« no previous file with comments | « chrome/service/cloud_print/cloud_print_helpers_unittest.cc ('k') | chrome/test/live_sync/live_sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698