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

Unified Diff: chrome/test/live_sync/live_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
Index: chrome/test/live_sync/live_sync_test.cc
diff --git a/chrome/test/live_sync/live_sync_test.cc b/chrome/test/live_sync/live_sync_test.cc
index fa2bf8c789e5fe9594c06f82c0c0fbb2c3bd3a12..f6ce1b9ad4d48fdd4470080f4672b4f1d89dea0d 100644
--- a/chrome/test/live_sync/live_sync_test.cc
+++ b/chrome/test/live_sync/live_sync_test.cc
@@ -10,6 +10,7 @@
#include "base/command_line.h"
#include "base/message_loop.h"
#include "base/path_service.h"
+#include "base/stringprintf.h"
#include "base/string_util.h"
#include "base/synchronization/waitable_event.h"
#include "base/task.h"
@@ -265,7 +266,7 @@ bool LiveSyncTest::SetupClients() {
// Create the required number of sync profiles and clients.
for (int i = 0; i < num_clients_; ++i) {
profiles_.push_back(MakeProfile(
- StringPrintf(FILE_PATH_LITERAL("Profile%d"), i)));
+ base::StringPrintf(FILE_PATH_LITERAL("Profile%d"), i)));
EXPECT_FALSE(GetProfile(i) == NULL) << "GetProfile(" << i << ") failed.";
clients_.push_back(
new ProfileSyncServiceHarness(GetProfile(i), username_, password_, i));
« no previous file with comments | « chrome/test/live_sync/live_passwords_sync_test.cc ('k') | chrome/test/live_sync/multiple_client_live_bookmarks_sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698