| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_RASTER_TILE_TASK_H_ | 5 #ifndef CC_RASTER_TILE_TASK_H_ |
| 6 #define CC_RASTER_TILE_TASK_H_ | 6 #define CC_RASTER_TILE_TASK_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "cc/raster/task.h" | 10 #include "cc/raster/task.h" |
| 11 | 11 |
| 12 namespace cc { | 12 namespace cc { |
| 13 class RasterBufferProvider; | |
| 14 | 13 |
| 15 class CC_EXPORT TileTask : public Task { | 14 class CC_EXPORT TileTask : public Task { |
| 16 public: | 15 public: |
| 17 typedef std::vector<scoped_refptr<TileTask>> Vector; | 16 typedef std::vector<scoped_refptr<TileTask>> Vector; |
| 18 | 17 |
| 19 const TileTask::Vector& dependencies() const { return dependencies_; } | 18 const TileTask::Vector& dependencies() const { return dependencies_; } |
| 20 | 19 |
| 21 // Indicates whether this TileTask can be run at the same time as other tasks | 20 // Indicates whether this TileTask can be run at the same time as other tasks |
| 22 // in the task graph. If false, this task will be scheduled with | 21 // in the task graph. If false, this task will be scheduled with |
| 23 // TASK_CATEGORY_NONCONCURRENT_FOREGROUND. | 22 // TASK_CATEGORY_NONCONCURRENT_FOREGROUND. |
| 24 bool supports_concurrent_execution() const { | 23 bool supports_concurrent_execution() const { |
| 25 return supports_concurrent_execution_; | 24 return supports_concurrent_execution_; |
| 26 } | 25 } |
| 27 | 26 |
| 28 virtual void ScheduleOnOriginThread(RasterBufferProvider* provider) = 0; | 27 // This function should be called from origin thread to process the completion |
| 29 virtual void CompleteOnOriginThread(RasterBufferProvider* provider) = 0; | 28 // of the task. |
| 30 | 29 virtual void OnTaskCompleted() = 0; |
| 31 void WillSchedule(); | |
| 32 void DidSchedule(); | |
| 33 bool HasBeenScheduled() const; | |
| 34 | |
| 35 void WillComplete(); | |
| 36 void DidComplete(); | |
| 37 bool HasCompleted() const; | |
| 38 | 30 |
| 39 protected: | 31 protected: |
| 40 explicit TileTask(bool supports_concurrent_execution); | 32 explicit TileTask(bool supports_concurrent_execution); |
| 41 TileTask(bool supports_concurrent_execution, TileTask::Vector* dependencies); | 33 TileTask(bool supports_concurrent_execution, TileTask::Vector* dependencies); |
| 42 ~TileTask() override; | 34 ~TileTask() override; |
| 43 | 35 |
| 44 const bool supports_concurrent_execution_; | 36 const bool supports_concurrent_execution_; |
| 45 TileTask::Vector dependencies_; | 37 TileTask::Vector dependencies_; |
| 46 bool did_schedule_; | |
| 47 bool did_complete_; | |
| 48 }; | 38 }; |
| 49 | 39 |
| 50 } // namespace cc | 40 } // namespace cc |
| 51 | 41 |
| 52 #endif // CC_RASTER_TILE_TASK_H_ | 42 #endif // CC_RASTER_TILE_TASK_H_ |
| OLD | NEW |