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

Side by Side Diff: dm/DMImageTask.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/DMGpuGMTask.cpp ('k') | dm/DMImageTask.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 DMImageTask_DEFINED
2 #define DMImageTask_DEFINED
3
4 #include "DMReporter.h"
5 #include "DMTask.h"
6 #include "DMTaskRunner.h"
7 #include "SkData.h"
8 #include "SkString.h"
9
10 // Decode an image into its natural bitmap, perhaps decoding random subsets.
11
12 namespace DM {
13
14 class ImageTask : public CpuTask {
15 public:
16 ImageTask(Reporter*, TaskRunner*, const SkData*, SkString name, int subsets = 0);
17
18 void draw() SK_OVERRIDE;
19 bool shouldSkip() const SK_OVERRIDE { return false; }
20 SkString name() const SK_OVERRIDE { return fName; }
21
22 private:
23 SkAutoTUnref<const SkData> fEncoded;
24 const SkString fName;
25 int fSubsets;
26 };
27
28 } // namespace DM
29
30 #endif // DMImageTask_DEFINED
OLDNEW
« no previous file with comments | « dm/DMGpuGMTask.cpp ('k') | dm/DMImageTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698