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

Side by Side Diff: cc/raster/tile_task.h

Issue 1888713002: cc: Merge TileTaskRunner to TileTaskWorkerPool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@rename_tile_task_client
Patch Set: feedback 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 unified diff | Download patch
« no previous file with comments | « cc/raster/one_copy_tile_task_worker_pool.cc ('k') | cc/raster/tile_task.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CC_RASTER_TILE_TASK_H_
6 #define CC_RASTER_TILE_TASK_H_
7
8 #include <vector>
9
10 #include "cc/raster/task.h"
11
12 namespace cc {
13 class RasterBufferProvider;
14
15 class CC_EXPORT TileTask : public Task {
16 public:
17 typedef std::vector<scoped_refptr<TileTask>> Vector;
18
19 const TileTask::Vector& dependencies() const { return dependencies_; }
20
21 // 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
23 // TASK_CATEGORY_NONCONCURRENT_FOREGROUND.
24 bool supports_concurrent_execution() const {
25 return supports_concurrent_execution_;
26 }
27
28 virtual void ScheduleOnOriginThread(RasterBufferProvider* provider) = 0;
29 virtual void CompleteOnOriginThread(RasterBufferProvider* provider) = 0;
30
31 void WillSchedule();
32 void DidSchedule();
33 bool HasBeenScheduled() const;
34
35 void WillComplete();
36 void DidComplete();
37 bool HasCompleted() const;
38
39 protected:
40 explicit TileTask(bool supports_concurrent_execution);
41 TileTask(bool supports_concurrent_execution, TileTask::Vector* dependencies);
42 ~TileTask() override;
43
44 const bool supports_concurrent_execution_;
45 TileTask::Vector dependencies_;
46 bool did_schedule_;
47 bool did_complete_;
48 };
49
50 } // namespace cc
51
52 #endif // CC_RASTER_TILE_TASK_H_
OLDNEW
« no previous file with comments | « cc/raster/one_copy_tile_task_worker_pool.cc ('k') | cc/raster/tile_task.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698