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

Unified Diff: ui/app_list/pagination_model_unittest.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: ui/app_list/pagination_model_unittest.cc
diff --git a/ui/app_list/pagination_model_unittest.cc b/ui/app_list/pagination_model_unittest.cc
index a8ebe7ca3b07f922f4cb26b86feabdc42058b9b4..cfb2d48eaa4347c3993d4bf1d30353b1a029d73d 100644
--- a/ui/app_list/pagination_model_unittest.cc
+++ b/ui/app_list/pagination_model_unittest.cc
@@ -57,7 +57,7 @@ class TestPaginationModelObserver : public PaginationModelObserver {
void AppendSelectedPage(int page) {
if (selected_pages_.length())
selected_pages_.append(std::string(" "));
- selected_pages_.append(StringPrintf("%d", page));
+ selected_pages_.append(base::StringPrintf("%d", page));
}
// PaginationModelObserver overrides:

Powered by Google App Engine
This is Rietveld 408576698