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

Unified Diff: base/run_loop.cc

Issue 1647803004: Move base to DEPS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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/run_loop.h ('k') | base/scoped_clear_errno.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/run_loop.cc
diff --git a/base/run_loop.cc b/base/run_loop.cc
deleted file mode 100644
index 2aa4def95706a24df2075205c032021543709ab0..0000000000000000000000000000000000000000
--- a/base/run_loop.cc
+++ /dev/null
@@ -1,106 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/run_loop.h"
-
-#include "base/bind.h"
-#include "base/tracked_objects.h"
-
-#if defined(OS_WIN)
-#include "base/message_loop/message_pump_dispatcher.h"
-#endif
-
-namespace base {
-
-RunLoop::RunLoop()
- : loop_(MessageLoop::current()),
- previous_run_loop_(NULL),
- run_depth_(0),
- run_called_(false),
- quit_called_(false),
- running_(false),
- quit_when_idle_received_(false),
- weak_factory_(this) {
-#if defined(OS_WIN)
- dispatcher_ = NULL;
-#endif
-}
-
-#if defined(OS_WIN)
-RunLoop::RunLoop(MessagePumpDispatcher* dispatcher)
- : loop_(MessageLoop::current()),
- previous_run_loop_(NULL),
- dispatcher_(dispatcher),
- run_depth_(0),
- run_called_(false),
- quit_called_(false),
- running_(false),
- quit_when_idle_received_(false),
- weak_factory_(this) {
-}
-#endif
-
-RunLoop::~RunLoop() {
-}
-
-void RunLoop::Run() {
- if (!BeforeRun())
- return;
-
- // Use task stopwatch to exclude the loop run time from the current task, if
- // any.
- tracked_objects::TaskStopwatch stopwatch;
- stopwatch.Start();
- loop_->RunHandler();
- stopwatch.Stop();
-
- AfterRun();
-}
-
-void RunLoop::RunUntilIdle() {
- quit_when_idle_received_ = true;
- Run();
-}
-
-void RunLoop::Quit() {
- quit_called_ = true;
- if (running_ && loop_->run_loop_ == this) {
- // This is the inner-most RunLoop, so quit now.
- loop_->QuitNow();
- }
-}
-
-base::Closure RunLoop::QuitClosure() {
- return base::Bind(&RunLoop::Quit, weak_factory_.GetWeakPtr());
-}
-
-bool RunLoop::BeforeRun() {
- DCHECK(!run_called_);
- run_called_ = true;
-
- // Allow Quit to be called before Run.
- if (quit_called_)
- return false;
-
- // Push RunLoop stack:
- previous_run_loop_ = loop_->run_loop_;
- run_depth_ = previous_run_loop_? previous_run_loop_->run_depth_ + 1 : 1;
- loop_->run_loop_ = this;
-
- running_ = true;
- return true;
-}
-
-void RunLoop::AfterRun() {
- running_ = false;
-
- // Pop RunLoop stack:
- loop_->run_loop_ = previous_run_loop_;
-
- // Execute deferred QuitNow, if any:
- if (previous_run_loop_ && previous_run_loop_->quit_called_)
- loop_->QuitNow();
-}
-
-} // namespace base
« no previous file with comments | « base/run_loop.h ('k') | base/scoped_clear_errno.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698