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

Unified Diff: chrome/installer/util/product.cc

Issue 7377012: Change base::LaunchProcess API slightly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 5 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: chrome/installer/util/product.cc
diff --git a/chrome/installer/util/product.cc b/chrome/installer/util/product.cc
index 6d3d44d39ba77ee50c3ef4eeba4b309cb2425a8a..eb5286d2de38c57dde7fd29ed9a369c0296fdcfc 100644
--- a/chrome/installer/util/product.cc
+++ b/chrome/installer/util/product.cc
@@ -62,8 +62,7 @@ bool Product::LaunchChrome(const FilePath& application_path) const {
bool success = !application_path.empty();
if (success) {
CommandLine cmd(application_path.Append(installer::kChromeExe));
- base::LaunchOptions options;
- success = base::LaunchProcess(cmd, options);
+ success = base::LaunchProcess(cmd, base::LaunchOptions(), NULL);
}
return success;
}
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.cc ('k') | chrome/service/cloud_print/cloud_print_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698