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

Unified Diff: ipc/ipc_logging.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: ipc/ipc_logging.cc
diff --git a/ipc/ipc_logging.cc b/ipc/ipc_logging.cc
index 21f14c187376df46ebae60da2f13614d2c055f08..0691a9a000135930d3c9e3f042e384e643e20e6c 100644
--- a/ipc/ipc_logging.cc
+++ b/ipc/ipc_logging.cc
@@ -241,7 +241,7 @@ void Logging::Log(const LogData& data) {
if (enabled_on_stderr_) {
std::string message_name;
if (data.message_name.empty()) {
- message_name = StringPrintf("[unknown type %d]", data.type);
+ message_name = base::StringPrintf("[unknown type %d]", data.type);
} else {
message_name = data.message_name;
}

Powered by Google App Engine
This is Rietveld 408576698