OLD | NEW |
1 #ifndef DMSKPTask_DEFINED | 1 #ifndef DMSKPTask_DEFINED |
2 #define DMSKPTask_DEFINED | 2 #define DMSKPTask_DEFINED |
3 | 3 |
4 #include "DMExpectations.h" | |
5 #include "DMReporter.h" | 4 #include "DMReporter.h" |
6 #include "DMTask.h" | 5 #include "DMTask.h" |
7 #include "DMTaskRunner.h" | 6 #include "DMTaskRunner.h" |
8 #include "SkPicture.h" | 7 #include "SkPicture.h" |
9 #include "SkString.h" | 8 #include "SkString.h" |
10 #include "SkTemplates.h" | 9 #include "SkTemplates.h" |
11 | 10 |
12 // Draws an SKP to a raster canvas, then compares it with some other modes. | 11 // Draws an SKP to a raster canvas, then compares it with some other modes. |
13 | 12 |
14 namespace DM { | 13 namespace DM { |
15 | 14 |
16 class SKPTask : public CpuTask { | 15 class SKPTask : public CpuTask { |
17 public: | 16 public: |
18 SKPTask(Reporter*, TaskRunner*, const Expectations&, const SkPicture*, SkStr
ing name); | 17 SKPTask(Reporter*, TaskRunner*, const SkPicture*, SkString name); |
19 | 18 |
20 virtual void draw() SK_OVERRIDE; | 19 virtual void draw() SK_OVERRIDE; |
21 virtual bool shouldSkip() const SK_OVERRIDE { return false; } | 20 virtual bool shouldSkip() const SK_OVERRIDE { return false; } |
22 virtual SkString name() const SK_OVERRIDE { return fName; } | 21 virtual SkString name() const SK_OVERRIDE { return fName; } |
23 | 22 |
24 private: | 23 private: |
25 SkAutoTUnref<const SkPicture> fPicture; | 24 SkAutoTUnref<const SkPicture> fPicture; |
26 const Expectations& fExpectations; | |
27 const SkString fName; | 25 const SkString fName; |
28 }; | 26 }; |
29 | 27 |
30 } // namespace DM | 28 } // namespace DM |
31 | 29 |
32 #endif // DMSKPTask_DEFINED | 30 #endif // DMSKPTask_DEFINED |
OLD | NEW |