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

Side by Side Diff: dm/DMTaskRunner.h

Issue 853883004: Revert of Sketch DM refactor. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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 | « dm/DMTask.cpp ('k') | dm/DMTaskRunner.cpp » ('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 #ifndef DMTaskRunner_DEFINED
2 #define DMTaskRunner_DEFINED
3
4 #include "DMGpuSupport.h"
5 #include "SkTDArray.h"
6 #include "SkTaskGroup.h"
7 #include "SkTypes.h"
8
9 namespace DM {
10
11 class CpuTask;
12 class GpuTask;
13
14 class TaskRunner : SkNoncopyable {
15 public:
16 TaskRunner() {}
17
18 void add(CpuTask* task);
19 void add(GpuTask* task);
20 void wait();
21
22 private:
23 SkTaskGroup fCpuWork;
24 SkTDArray<GpuTask*> fGpuWork;
25 };
26
27 } // namespace DM
28
29 #endif // DMTaskRunner_DEFINED
OLDNEW
« no previous file with comments | « dm/DMTask.cpp ('k') | dm/DMTaskRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698