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

Unified Diff: cloud_print/virtual_driver/win/port_monitor/port_monitor.cc

Issue 785353003: Update cloud_print and chrome/service to use the new version of LaunchProcess. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « cloud_print/virtual_driver/win/install/setup.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/virtual_driver/win/port_monitor/port_monitor.cc
diff --git a/cloud_print/virtual_driver/win/port_monitor/port_monitor.cc b/cloud_print/virtual_driver/win/port_monitor/port_monitor.cc
index 0878baced30dd50bc7e48e34f4da29c347d72683..a403af4fd5e0cdced6e4a4039f24cc5e86a9fd9d 100644
--- a/cloud_print/virtual_driver/win/port_monitor/port_monitor.cc
+++ b/cloud_print/virtual_driver/win/port_monitor/port_monitor.cc
@@ -229,7 +229,7 @@ bool LaunchPrintDialog(const base::FilePath& xps_path,
command_line.AppendSwitchNative(switches::kCloudPrintJobTitle, job_title);
base::LaunchOptions options;
options.as_user = primary_token_scoped.Get();
- base::LaunchProcess(command_line, options, NULL);
+ base::LaunchProcess(command_line, options);
return true;
}
@@ -255,7 +255,7 @@ void LaunchChromeDownloadPage() {
base::LaunchOptions options;
options.as_user = token_scoped.Get();
- base::LaunchProcess(command_line, options, NULL);
+ base::LaunchProcess(command_line, options);
}
// Returns false if the print job is being run in a context
« no previous file with comments | « cloud_print/virtual_driver/win/install/setup.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698