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

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

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 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/browser/sync/test/integration/performance/autofill_sync_perf_test.cc
diff --git a/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc b/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc
index eae7eefd1303823e1cc9f4ea8884d98a1ec7ba34..5168a592b1aae2c99d5f907c498d6c8f450484fe 100644
--- a/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc
+++ b/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc
@@ -135,7 +135,7 @@ const std::string AutofillSyncPerfTest::NextGUID() {
}
const std::string AutofillSyncPerfTest::IntToGUID(int n) {
- return StringPrintf("00000000-0000-0000-0000-%012X", n);
+ return base::StringPrintf("00000000-0000-0000-0000-%012X", n);
}
const std::string AutofillSyncPerfTest::NextName() {
@@ -143,7 +143,7 @@ const std::string AutofillSyncPerfTest::NextName() {
}
const std::string AutofillSyncPerfTest::IntToName(int n) {
- return StringPrintf("Name%d", n);
+ return base::StringPrintf("Name%d", n);
}
const std::string AutofillSyncPerfTest::NextValue() {
@@ -151,7 +151,7 @@ const std::string AutofillSyncPerfTest::NextValue() {
}
const std::string AutofillSyncPerfTest::IntToValue(int n) {
- return StringPrintf("Value%d", n);
+ return base::StringPrintf("Value%d", n);
}
void ForceSync(int profile) {

Powered by Google App Engine
This is Rietveld 408576698