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

Side by Side 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, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/message_loop.h ('k') | content/common/child_process.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/message_loop.h" 5 #include "base/message_loop.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 347
348 void MessageLoop::QuitNow() { 348 void MessageLoop::QuitNow() {
349 DCHECK_EQ(this, current()); 349 DCHECK_EQ(this, current());
350 if (state_) { 350 if (state_) {
351 pump_->Quit(); 351 pump_->Quit();
352 } else { 352 } else {
353 NOTREACHED() << "Must be inside Run to call Quit"; 353 NOTREACHED() << "Must be inside Run to call Quit";
354 } 354 }
355 } 355 }
356 356
357 void MessageLoop::CancelQuit() {
358 DCHECK_EQ(this, current());
359 if (state_)
360 state_->quit_received = false;
361 }
362
357 void MessageLoop::SetNestableTasksAllowed(bool allowed) { 363 void MessageLoop::SetNestableTasksAllowed(bool allowed) {
358 if (nestable_tasks_allowed_ != allowed) { 364 if (nestable_tasks_allowed_ != allowed) {
359 nestable_tasks_allowed_ = allowed; 365 nestable_tasks_allowed_ = allowed;
360 if (!nestable_tasks_allowed_) 366 if (!nestable_tasks_allowed_)
361 return; 367 return;
362 // Start the native pump if we are not already pumping. 368 // Start the native pump if we are not already pumping.
363 pump_->ScheduleWork(); 369 pump_->ScheduleWork();
364 } 370 }
365 } 371 }
366 372
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 Watcher *delegate) { 843 Watcher *delegate) {
838 return pump_libevent()->WatchFileDescriptor( 844 return pump_libevent()->WatchFileDescriptor(
839 fd, 845 fd,
840 persistent, 846 persistent,
841 static_cast<base::MessagePumpLibevent::Mode>(mode), 847 static_cast<base::MessagePumpLibevent::Mode>(mode),
842 controller, 848 controller,
843 delegate); 849 delegate);
844 } 850 }
845 851
846 #endif 852 #endif
OLDNEW
« 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