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

Side by Side Diff: dm/DMWriteTask.h

Issue 29293003: DM: add --writePath (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: directory per config Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « dm/DMReporter.cpp ('k') | dm/DMWriteTask.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 DMWriteTask_DEFINED
2 #define DMWriteTask_DEFINED
3
4 #include "DMTask.h"
5 #include "SkBitmap.h"
6 #include "SkString.h"
7
8 // Writes a bitmap to a file.
9
10 namespace DM {
11
12 class WriteTask : public Task {
13
14 public:
15 WriteTask(const Task& parent, SkBitmap bitmap);
16
17 virtual void draw() SK_OVERRIDE;
18 virtual bool usesGpu() const SK_OVERRIDE { return false; }
19 virtual bool shouldSkip() const SK_OVERRIDE;
20 virtual SkString name() const SK_OVERRIDE;
21
22 private:
23 SkString fConfig;
24 SkString fGmName;
25 const SkBitmap fBitmap;
26 };
27
28 } // namespace DM
29
30 #endif // DMWriteTask_DEFINED
OLDNEW
« no previous file with comments | « dm/DMReporter.cpp ('k') | dm/DMWriteTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698