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

Unified Diff: printing/printed_document.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: printing/printed_document.cc
diff --git a/printing/printed_document.cc b/printing/printed_document.cc
index 714f13da2874e2a6b7a853d0db60d40ba9bdaa52..22e0fd6393b365d293d286fc7fb33cfddd88e693 100644
--- a/printing/printed_document.cc
+++ b/printing/printed_document.cc
@@ -179,7 +179,7 @@ void PrintedDocument::DebugDump(const PrintedPage& page) {
string16 filename;
filename += name();
filename += ASCIIToUTF16("_");
- filename += ASCIIToUTF16(StringPrintf("%02d", page.page_number()));
+ filename += ASCIIToUTF16(base::StringPrintf("%02d", page.page_number()));
#if defined(OS_WIN)
filename += ASCIIToUTF16("_.emf");
page.metafile()->SaveTo(

Powered by Google App Engine
This is Rietveld 408576698