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

Unified Diff: remoting/host/win/launch_process_with_token.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: remoting/host/win/launch_process_with_token.cc
diff --git a/remoting/host/win/launch_process_with_token.cc b/remoting/host/win/launch_process_with_token.cc
index fffa9830f7ec6cf97d179b19f0d240e2b032fa1c..167ca9a7d4aa719c5553921582dbcc15f174b40c 100644
--- a/remoting/host/win/launch_process_with_token.cc
+++ b/remoting/host/win/launch_process_with_token.cc
@@ -87,7 +87,7 @@ bool ConnectToExecutionServer(uint32 session_id,
// Use the default pipe name if we couldn't query its name.
if (pipe_name.empty()) {
pipe_name = UTF8ToUTF16(
- StringPrintf(kCreateProcessDefaultPipeNameFormat, session_id));
+ base::StringPrintf(kCreateProcessDefaultPipeNameFormat, session_id));
}
// Try to connect to the named pipe.

Powered by Google App Engine
This is Rietveld 408576698