Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: content/browser/zygote_main_linux.cc

Issue 8674003: Move the ProcessWatcher methods out of content/common/process_watcher into base/process_util, alo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/zygote_main_linux.cc
===================================================================
--- content/browser/zygote_main_linux.cc (revision 111236)
+++ content/browser/zygote_main_linux.cc (working copy)
@@ -31,7 +31,6 @@
#include "content/common/chrome_descriptors.h"
#include "content/common/font_config_ipc_linux.h"
#include "content/common/pepper_plugin_registry.h"
-#include "content/common/process_watcher.h"
#include "content/common/sandbox_methods_linux.h"
#include "content/common/seccomp_sandbox.h"
#include "content/common/set_process_title.h"
@@ -220,7 +219,7 @@
actual_child = child;
}
- ProcessWatcher::EnsureProcessTerminated(actual_child);
+ base::EnsureProcessTerminated(actual_child);
}
void HandleGetTerminationStatus(int fd, const Pickle& pickle, void* iter) {

Powered by Google App Engine
This is Rietveld 408576698