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

Unified Diff: remoting/host/setup/daemon_installer_win.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/setup/daemon_installer_win.cc
diff --git a/remoting/host/setup/daemon_installer_win.cc b/remoting/host/setup/daemon_installer_win.cc
index 67c30a46b3794f07458a2e7812a87d7c47c1e01e..bc914b4eea26efa564d22fff6cb2651def1fc19f 100644
--- a/remoting/host/setup/daemon_installer_win.cc
+++ b/remoting/host/setup/daemon_installer_win.cc
@@ -295,10 +295,10 @@ void DaemonCommandLineInstallerWin::Install() {
// Launch the updater process and wait for its termination.
string16 command_line = WideToUTF16(
- StringPrintf(kGoogleUpdateCommandLineFormat,
- google_update.c_str(),
- kHostOmahaAppid,
- kOmahaLanguage));
+ base::StringPrintf(kGoogleUpdateCommandLineFormat,
+ google_update.c_str(),
+ kHostOmahaAppid,
+ kOmahaLanguage));
base::LaunchOptions options;
if (!base::LaunchProcess(command_line, options, process_.Receive())) {

Powered by Google App Engine
This is Rietveld 408576698