| Index: chrome/browser/sync/syncable/syncable_unittest.cc
|
| diff --git a/chrome/browser/sync/syncable/syncable_unittest.cc b/chrome/browser/sync/syncable/syncable_unittest.cc
|
| index d7cda70ab88366518c064bbc25c90bbb1466b1f4..ebd912bb018debf1f2e3c6ae9d1b21c0e8666709 100644
|
| --- a/chrome/browser/sync/syncable/syncable_unittest.cc
|
| +++ b/chrome/browser/sync/syncable/syncable_unittest.cc
|
| @@ -25,7 +25,7 @@
|
| #include "base/logging.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/scoped_temp_dir.h"
|
| -#include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/threading/platform_thread.h"
|
| #include "base/values.h"
|
| #include "chrome/browser/sync/engine/syncproto.h"
|
| @@ -1645,8 +1645,8 @@ class StressTransactionsDelegate : public base::PlatformThread::Delegate {
|
| CHECK(1 == CountEntriesWithName(&trans, trans.root_id(), path_name));
|
| base::PlatformThread::Sleep(rand() % 10);
|
| } else {
|
| - std::string unique_name = StringPrintf("%d.%d", thread_number_,
|
| - entry_count++);
|
| + std::string unique_name =
|
| + base::StringPrintf("%d.%d", thread_number_, entry_count++);
|
| path_name.assign(unique_name.begin(), unique_name.end());
|
| WriteTransaction trans(dir, UNITTEST, __FILE__, __LINE__);
|
| MutableEntry e(&trans, CREATE, trans.root_id(), path_name);
|
|
|