Index: chrome/installer/util/google_update_util.cc |
diff --git a/chrome/installer/util/google_update_util.cc b/chrome/installer/util/google_update_util.cc |
index 2448ba4900188636fa16c74999ba85ab56897d5f..51a2712f6f5c54b54ddd197c94e26a679ebbdb16 100644 |
--- a/chrome/installer/util/google_update_util.cc |
+++ b/chrome/installer/util/google_update_util.cc |
@@ -97,7 +97,7 @@ bool LaunchProcessAndWaitWithTimeout(const string16& cmd_string, |
int exit_code = 0; |
LOG(INFO) << "Launching: " << cmd_string; |
if (!base::LaunchProcess(cmd_string, base::LaunchOptions(), |
- process.Receive())) { |
+ &process)) { |
PLOG(ERROR) << "Failed to launch (" << cmd_string << ")"; |
} else if (!base::WaitForExitCodeWithTimeout(process, &exit_code, timeout)) { |
// The GetExitCodeProcess failed or timed-out. |