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

Unified Diff: content/app/content_main_runner.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: content/app/content_main_runner.cc
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index e0a5a991135ad4ce938248ebd1fed466c87ad75d..50930fa44f8cf4ee6aeb1472b345b8ac9e0bd5e1 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -196,8 +196,9 @@ void SendTaskPortToParentProcess() {
base::MachPortSender child_sender(mach_port_name.c_str());
kern_return_t err = child_sender.SendMessage(child_message, kTimeoutMs);
if (err != KERN_SUCCESS) {
- LOG(ERROR) << StringPrintf("child SendMessage() failed: 0x%x %s", err,
- mach_error_string(err));
+ LOG(ERROR) <<
+ base::StringPrintf("child SendMessage() failed: 0x%x %s", err,
+ mach_error_string(err));
}
}

Powered by Google App Engine
This is Rietveld 408576698