Index: chrome/installer/util/google_update_util.cc |
=================================================================== |
--- chrome/installer/util/google_update_util.cc (revision 237598) |
+++ chrome/installer/util/google_update_util.cc (working copy) |
@@ -95,9 +95,9 @@ |
bool success = false; |
base::win::ScopedHandle process; |
int exit_code = 0; |
- VLOG(0) << "Launching: " << cmd_string; |
+ LOG(INFO) << "Launching: " << cmd_string; |
if (!base::LaunchProcess(cmd_string, base::LaunchOptions(), |
- &process)) { |
+ process.Receive())) { |
PLOG(ERROR) << "Failed to launch (" << cmd_string << ")"; |
} else if (!base::WaitForExitCodeWithTimeout(process, &exit_code, timeout)) { |
// The GetExitCodeProcess failed or timed-out. |
@@ -174,7 +174,7 @@ |
} // namespace |
bool EnsureUserLevelGoogleUpdatePresent() { |
- VLOG(0) << "Ensuring Google Update is present at user-level."; |
+ LOG(INFO) << "Ensuring Google Update is present at user-level."; |
bool success = false; |
if (IsGoogleUpdatePresent(false)) { |