summaryrefslogtreecommitdiffstats
path: root/win8
diff options
context:
space:
mode:
authorrvargas <rvargas@chromium.org>2015-03-09 16:53:45 -0700
committerCommit bot <commit-bot@chromium.org>2015-03-09 23:55:07 +0000
commiteedb763e54c4c79c7110c2daa21435a390982a71 (patch)
tree1f6effdb3a34e09e757de1644f450703e6466780 /win8
parent4f9ceb2fe2f91bb0af51106919570957cde44fee (diff)
downloadchromium_src-eedb763e54c4c79c7110c2daa21435a390982a71.zip
chromium_src-eedb763e54c4c79c7110c2daa21435a390982a71.tar.gz
chromium_src-eedb763e54c4c79c7110c2daa21435a390982a71.tar.bz2
Redefine base::Process:Terminate so that it can replace base::KillProcess
BUG=417532 Review URL: https://codereview.chromium.org/983963002 Cr-Commit-Position: refs/heads/master@{#319776}
Diffstat (limited to 'win8')
-rw-r--r--win8/delegate_execute/delegate_execute.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/win8/delegate_execute/delegate_execute.cc b/win8/delegate_execute/delegate_execute.cc
index 2574619..a41fb5b 100644
--- a/win8/delegate_execute/delegate_execute.cc
+++ b/win8/delegate_execute/delegate_execute.cc
@@ -110,7 +110,7 @@ int RelaunchChrome(const DelegateExecuteOperation& operation) {
// This could mean that Chrome is hung. Proceed to exterminate.
base::Process process = operation.GetParent();
AtlTrace("%ds timeout. Killing Chrome %d\n", kWaitSeconds, process.Pid());
- process.Terminate(0);
+ process.Terminate(0, false);
} else {
AtlTrace("Failed to wait for relaunch mutex, result is 0x%x\n", result);
}