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

Unified Diff: base/message_loop.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.h ('k') | content/common/child_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_loop.cc
diff --git a/base/message_loop.cc b/base/message_loop.cc
index bf0d25da975981b361ab576ddb6eeb6b26cc7021..021a426bbaa8692c4ac0a1bc4783e09bb8086c18 100644
--- a/base/message_loop.cc
+++ b/base/message_loop.cc
@@ -354,6 +354,12 @@ void MessageLoop::QuitNow() {
}
}
+void MessageLoop::CancelQuit() {
+ DCHECK_EQ(this, current());
+ if (state_)
+ state_->quit_received = false;
+}
+
void MessageLoop::SetNestableTasksAllowed(bool allowed) {
if (nestable_tasks_allowed_ != allowed) {
nestable_tasks_allowed_ = allowed;
« no previous file with comments | « base/message_loop.h ('k') | content/common/child_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698