| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef CC_TEST_TASK_GRAPH_RUNNER_TEST_TEMPLATE_H_ | 5 #ifndef CC_TEST_TASK_GRAPH_RUNNER_TEST_TEMPLATE_H_ |
| 6 #define CC_TEST_TASK_GRAPH_RUNNER_TEST_TEMPLATE_H_ | 6 #define CC_TEST_TASK_GRAPH_RUNNER_TEST_TEMPLATE_H_ |
| 7 | 7 |
| 8 #include "cc/raster/task_graph_runner.h" | 8 #include "cc/raster/task_graph_runner.h" |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 static const int kNamespaceCount = 3; | 55 static const int kNamespaceCount = 3; |
| 56 | 56 |
| 57 protected: | 57 protected: |
| 58 class FakeTaskImpl : public Task { | 58 class FakeTaskImpl : public Task { |
| 59 public: | 59 public: |
| 60 FakeTaskImpl(TaskGraphRunnerTestBase* test, int namespace_index, int id) | 60 FakeTaskImpl(TaskGraphRunnerTestBase* test, int namespace_index, int id) |
| 61 : test_(test), namespace_index_(namespace_index), id_(id) {} | 61 : test_(test), namespace_index_(namespace_index), id_(id) {} |
| 62 | 62 |
| 63 // Overridden from Task: | 63 // Overridden from Task: |
| 64 void RunOnWorkerThread() override; | 64 void RunOnWorkerThread() override; |
| 65 | 65 void ScheduleOnOriginThread() override{}; |
| 66 virtual void CompleteOnOriginThread(); | 66 void CompleteOnOriginThread() override; |
| 67 | 67 |
| 68 protected: | 68 protected: |
| 69 ~FakeTaskImpl() override {} | 69 ~FakeTaskImpl() override {} |
| 70 | 70 |
| 71 private: | 71 private: |
| 72 TaskGraphRunnerTestBase* test_; | 72 TaskGraphRunnerTestBase* test_; |
| 73 int namespace_index_; | 73 int namespace_index_; |
| 74 int id_; | 74 int id_; |
| 75 | 75 |
| 76 DISALLOW_COPY_AND_ASSIGN(FakeTaskImpl); | 76 DISALLOW_COPY_AND_ASSIGN(FakeTaskImpl); |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 EXPECT_EQ(1u, this->on_task_completed_ids(i)[0]); | 291 EXPECT_EQ(1u, this->on_task_completed_ids(i)[0]); |
| 292 EXPECT_EQ(0u, this->on_task_completed_ids(i)[1]); | 292 EXPECT_EQ(0u, this->on_task_completed_ids(i)[1]); |
| 293 } | 293 } |
| 294 } | 294 } |
| 295 | 295 |
| 296 REGISTER_TYPED_TEST_CASE_P(SingleThreadTaskGraphRunnerTest, Priority); | 296 REGISTER_TYPED_TEST_CASE_P(SingleThreadTaskGraphRunnerTest, Priority); |
| 297 | 297 |
| 298 } // namespace cc | 298 } // namespace cc |
| 299 | 299 |
| 300 #endif // CC_TEST_TASK_GRAPH_RUNNER_TEST_TEMPLATE_H_ | 300 #endif // CC_TEST_TASK_GRAPH_RUNNER_TEST_TEMPLATE_H_ |
| OLD | NEW |