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

Side by Side Diff: dm/DMSKPTask.h

Issue 549183002: Let .skps have Expectations (i.e. work with -r) too. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 3 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/DM.cpp ('k') | dm/DMSKPTask.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef DMSKPTask_DEFINED 1 #ifndef DMSKPTask_DEFINED
2 #define DMSKPTask_DEFINED 2 #define DMSKPTask_DEFINED
3 3
4 #include "DMExpectations.h"
4 #include "DMReporter.h" 5 #include "DMReporter.h"
5 #include "DMTask.h" 6 #include "DMTask.h"
6 #include "DMTaskRunner.h" 7 #include "DMTaskRunner.h"
7 #include "SkPicture.h" 8 #include "SkPicture.h"
8 #include "SkString.h" 9 #include "SkString.h"
9 #include "SkTemplates.h" 10 #include "SkTemplates.h"
10 11
11 // Draws an SKP to a raster canvas, then compares it with some other modes. 12 // Draws an SKP to a raster canvas, then compares it with some other modes.
12 13
13 namespace DM { 14 namespace DM {
14 15
15 class SKPTask : public CpuTask { 16 class SKPTask : public CpuTask {
16 public: 17 public:
17 SKPTask(Reporter*, TaskRunner*, const SkPicture*, SkString name); 18 SKPTask(Reporter*, TaskRunner*, const Expectations&, const SkPicture*, SkStr ing name);
18 19
19 virtual void draw() SK_OVERRIDE; 20 virtual void draw() SK_OVERRIDE;
20 virtual bool shouldSkip() const SK_OVERRIDE { return false; } 21 virtual bool shouldSkip() const SK_OVERRIDE { return false; }
21 virtual SkString name() const SK_OVERRIDE { return fName; } 22 virtual SkString name() const SK_OVERRIDE { return fName; }
22 23
23 private: 24 private:
24 SkAutoTUnref<const SkPicture> fPicture; 25 SkAutoTUnref<const SkPicture> fPicture;
26 const Expectations& fExpectations;
25 const SkString fName; 27 const SkString fName;
26 }; 28 };
27 29
28 } // namespace DM 30 } // namespace DM
29 31
30 #endif // DMSKPTask_DEFINED 32 #endif // DMSKPTask_DEFINED
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | dm/DMSKPTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698