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

Unified Diff: cc/raster/task.cc

Issue 1854723002: cc: Simplify task and its derived classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Corrected scope of dependencies. Created 4 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
Index: cc/raster/task.cc
diff --git a/cc/raster/task.cc b/cc/raster/task.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6afc5773688d990e81d70cf77ad820a8c524ca91
--- /dev/null
+++ b/cc/raster/task.cc
@@ -0,0 +1,67 @@
+// Copyright 2016 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 "cc/raster/task.h"
+
+#include "base/logging.h"
+
+namespace cc {
+
+Task::Task()
+ : did_schedule_(false),
+ did_complete_(false),
+ will_run_(false),
+ did_run_(false) {}
+
+Task::~Task() {
+ DCHECK(!did_schedule_);
+ DCHECK(!will_run_);
+ DCHECK(!did_run_ || did_complete_);
+}
+
+void Task::WillRun() {
+ DCHECK(!will_run_);
+ DCHECK(!did_run_);
+ will_run_ = true;
+}
+
+void Task::DidRun() {
+ DCHECK(will_run_);
+ will_run_ = false;
+ did_run_ = true;
+}
+
+bool Task::HasFinishedRunning() const {
+ return did_run_;
+}
+
+void Task::WillSchedule() {
+ DCHECK(!did_schedule_);
+}
+
+void Task::DidSchedule() {
+ did_schedule_ = true;
+ did_complete_ = false;
+}
+
+bool Task::HasBeenScheduled() const {
+ return did_schedule_;
+}
+
+void Task::WillComplete() {
+ DCHECK(!did_complete_);
+}
+
+void Task::DidComplete() {
+ DCHECK(did_schedule_);
+ DCHECK(!did_complete_);
+ did_schedule_ = false;
+ did_complete_ = true;
+}
+
+bool Task::HasCompleted() const {
+ return did_complete_;
+}
+
+} // namespace cc
« no previous file with comments | « cc/raster/task.h ('k') | cc/raster/task_graph_runner.h » ('j') | cc/tiles/tile_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698