| Index: chrome/browser/browser_init.cc
|
| ===================================================================
|
| --- chrome/browser/browser_init.cc (revision 5371)
|
| +++ chrome/browser/browser_init.cc (working copy)
|
| @@ -177,7 +177,7 @@
|
| }
|
|
|
| // Time to take action. Kill the browser process.
|
| - process_util::KillProcess(process_id, ResultCodes::HUNG, true);
|
| + base::KillProcess(process_id, ResultCodes::HUNG, true);
|
| remote_window_ = NULL;
|
| return false;
|
| }
|
| @@ -320,7 +320,7 @@
|
|
|
| // Retrieve the list of browser processes on start. This list is then used to
|
| // detect zombie renderer process or plugin process.
|
| - class ZombieDetector : public process_util::ProcessFilter {
|
| + class ZombieDetector : public base::ProcessFilter {
|
| public:
|
| ZombieDetector() {
|
| for (HWND window = NULL;;) {
|
| @@ -362,9 +362,7 @@
|
| };
|
|
|
| ZombieDetector zombie_detector;
|
| - process_util::KillProcesses(L"chrome.exe",
|
| - ResultCodes::HUNG,
|
| - &zombie_detector);
|
| + base::KillProcesses(L"chrome.exe", ResultCodes::HUNG, &zombie_detector);
|
| }
|
|
|
|
|
|
|