| Index: chrome/browser/process_singleton_win.cc
|
| diff --git a/chrome/browser/process_singleton_win.cc b/chrome/browser/process_singleton_win.cc
|
| index 82f3d4f5739e2282e196bee5a2de038e8d696df6..8e378763cfe29225f3eabae824698ce80cf81b3a 100644
|
| --- a/chrome/browser/process_singleton_win.cc
|
| +++ b/chrome/browser/process_singleton_win.cc
|
| @@ -10,7 +10,6 @@
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "base/files/file_path.h"
|
| -#include "base/process/kill.h"
|
| #include "base/process/process.h"
|
| #include "base/process/process_info.h"
|
| #include "base/strings/string_number_conversions.h"
|
| @@ -295,7 +294,7 @@ ProcessSingleton::NotifyResult ProcessSingleton::NotifyOtherProcess() {
|
| funnel.RecordEvent(L"HungBrowserTerminated");
|
|
|
| // Time to take action. Kill the browser process.
|
| - base::KillProcess(process.Handle(), content::RESULT_CODE_HUNG, true);
|
| + process.Terminate(content::RESULT_CODE_HUNG, true);
|
| remote_window_ = NULL;
|
| return PROCESS_NONE;
|
| }
|
|
|