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

Unified Diff: content/common/child_process.cc

Issue 6909016: Allow child processes to abort quitting. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 months 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
« no previous file with comments | « base/message_loop.cc ('k') | content/common/child_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_process.cc
diff --git a/content/common/child_process.cc b/content/common/child_process.cc
index 5e5d5faf920655a47f6d5f1bbc1365eb434de6b9..c71ea53e08251ce94e16399fd024cf703c44417c 100644
--- a/content/common/child_process.cc
+++ b/content/common/child_process.cc
@@ -58,6 +58,8 @@ void ChildProcess::set_main_thread(ChildThread* thread) {
void ChildProcess::AddRefProcess() {
DCHECK(!main_thread_.get() || // null in unittests.
MessageLoop::current() == main_thread_->message_loop());
+ if (!ref_count_ && main_thread_.get())
+ main_thread_->AbortProcessShutdown();
ref_count_++;
}
« no previous file with comments | « base/message_loop.cc ('k') | content/common/child_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698