OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "cc/resources/raster_worker_pool.h" | 5 #include "cc/resources/raster_worker_pool.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/cancelable_callback.h" | 10 #include "base/cancelable_callback.h" |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 : public testing::TestWithParam<RasterWorkerPoolType>, | 115 : public testing::TestWithParam<RasterWorkerPoolType>, |
116 public RasterizerClient { | 116 public RasterizerClient { |
117 public: | 117 public: |
118 struct RasterTaskResult { | 118 struct RasterTaskResult { |
119 unsigned id; | 119 unsigned id; |
120 bool canceled; | 120 bool canceled; |
121 }; | 121 }; |
122 | 122 |
123 typedef std::vector<scoped_refptr<RasterTask>> RasterTaskVector; | 123 typedef std::vector<scoped_refptr<RasterTask>> RasterTaskVector; |
124 | 124 |
125 enum NamedTaskSet { REQUIRED_FOR_ACTIVATION = 0, ALL = 1 }; | 125 enum NamedTaskSet { ALL, REQUIRED_FOR_ACTIVATION, REQUIRED_FOR_DRAW }; |
126 | 126 |
127 RasterWorkerPoolTest() | 127 RasterWorkerPoolTest() |
128 : context_provider_(TestContextProvider::Create()), | 128 : context_provider_(TestContextProvider::Create()), |
129 timeout_seconds_(5), | 129 timeout_seconds_(5), |
130 timed_out_(false) {} | 130 timed_out_(false) {} |
131 | 131 |
132 // Overridden from testing::Test: | 132 // Overridden from testing::Test: |
133 virtual void SetUp() override { | 133 virtual void SetUp() override { |
134 switch (GetParam()) { | 134 switch (GetParam()) { |
135 case RASTER_WORKER_POOL_TYPE_PIXEL_BUFFER: | 135 case RASTER_WORKER_POOL_TYPE_PIXEL_BUFFER: |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 INSTANTIATE_TEST_CASE_P(RasterWorkerPoolTests, | 402 INSTANTIATE_TEST_CASE_P(RasterWorkerPoolTests, |
403 RasterWorkerPoolTest, | 403 RasterWorkerPoolTest, |
404 ::testing::Values(RASTER_WORKER_POOL_TYPE_PIXEL_BUFFER, | 404 ::testing::Values(RASTER_WORKER_POOL_TYPE_PIXEL_BUFFER, |
405 RASTER_WORKER_POOL_TYPE_ZERO_COPY, | 405 RASTER_WORKER_POOL_TYPE_ZERO_COPY, |
406 RASTER_WORKER_POOL_TYPE_ONE_COPY, | 406 RASTER_WORKER_POOL_TYPE_ONE_COPY, |
407 RASTER_WORKER_POOL_TYPE_GPU, | 407 RASTER_WORKER_POOL_TYPE_GPU, |
408 RASTER_WORKER_POOL_TYPE_BITMAP)); | 408 RASTER_WORKER_POOL_TYPE_BITMAP)); |
409 | 409 |
410 } // namespace | 410 } // namespace |
411 } // namespace cc | 411 } // namespace cc |
OLD | NEW |