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

Unified Diff: cc/raster/single_thread_task_graph_runner_unittest.cc

Issue 1449133002: TaskGraphRunner refactor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback Created 5 years, 1 month 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 | « cc/raster/single_thread_task_graph_runner.cc ('k') | cc/raster/synchronous_task_graph_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/raster/single_thread_task_graph_runner_unittest.cc
diff --git a/cc/raster/single_thread_task_graph_runner_unittest.cc b/cc/raster/single_thread_task_graph_runner_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c1533da8debbbce75fbe226f50dba561a0cf5e30
--- /dev/null
+++ b/cc/raster/single_thread_task_graph_runner_unittest.cc
@@ -0,0 +1,44 @@
+// Copyright 2015 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/threading/simple_thread.h"
+#include "cc/raster/single_thread_task_graph_runner.h"
+#include "cc/test/task_graph_runner_test_template.h"
+
+namespace cc {
+namespace {
+
+class SingleThreadTaskGraphRunnerTestDelegate {
+ public:
+ SingleThreadTaskGraphRunnerTestDelegate() {}
+
+ void StartTaskGraphRunner() {
+ single_thread_task_graph_runner_.Start(
+ "SingleThreadTaskGraphRunnerTestDelegate",
+ base::SimpleThread::Options());
+ }
+
+ TaskGraphRunner* GetTaskGraphRunner() {
+ return &single_thread_task_graph_runner_;
+ }
+
+ void StopTaskGraphRunner() {}
+
+ ~SingleThreadTaskGraphRunnerTestDelegate() {
+ single_thread_task_graph_runner_.Shutdown();
+ }
+
+ private:
+ SingleThreadTaskGraphRunner single_thread_task_graph_runner_;
+};
+
+INSTANTIATE_TYPED_TEST_CASE_P(SingleThreadTaskGraphRunner,
+ TaskGraphRunnerTest,
+ SingleThreadTaskGraphRunnerTestDelegate);
+INSTANTIATE_TYPED_TEST_CASE_P(SingleThreadTaskGraphRunner,
+ SingleThreadTaskGraphRunnerTest,
+ SingleThreadTaskGraphRunnerTestDelegate);
+
+} // namespace
+} // namespace cc
« no previous file with comments | « cc/raster/single_thread_task_graph_runner.cc ('k') | cc/raster/synchronous_task_graph_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698