| 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) { | 
|  |