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

Unified Diff: chrome/browser/sync/test/integration/bookmarks_helper.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/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

Powered by Google App Engine
This is Rietveld 408576698