| Index: chrome/browser/sync/test/integration/bookmarks_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/bookmarks_helper.cc b/chrome/browser/sync/test/integration/bookmarks_helper.cc
|
| index 49ca45da6d33017200d6f056bb461bed1e52dd93..cf4d9dde899a2e59c6797b62b63fdd5ecaae8c3e 100644
|
| --- a/chrome/browser/sync/test/integration/bookmarks_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/bookmarks_helper.cc
|
| @@ -736,23 +736,23 @@ gfx::Image Create1xFaviconFromPNGFile(const std::string& path) {
|
| }
|
|
|
| std::string IndexedURL(int i) {
|
| - return StringPrintf("http://www.host.ext:1234/path/filename/%d", i);
|
| + return base::StringPrintf("http://www.host.ext:1234/path/filename/%d", i);
|
| }
|
|
|
| std::wstring IndexedURLTitle(int i) {
|
| - return StringPrintf(L"URL Title %d", i);
|
| + return base::StringPrintf(L"URL Title %d", i);
|
| }
|
|
|
| std::wstring IndexedFolderName(int i) {
|
| - return StringPrintf(L"Folder Name %d", i);
|
| + return base::StringPrintf(L"Folder Name %d", i);
|
| }
|
|
|
| std::wstring IndexedSubfolderName(int i) {
|
| - return StringPrintf(L"Subfolder Name %d", i);
|
| + return base::StringPrintf(L"Subfolder Name %d", i);
|
| }
|
|
|
| std::wstring IndexedSubsubfolderName(int i) {
|
| - return StringPrintf(L"Subsubfolder Name %d", i);
|
| + return base::StringPrintf(L"Subsubfolder Name %d", i);
|
| }
|
|
|
| } // namespace bookmarks_helper
|
|
|