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

Side by Side Diff: dm/DMWriteTask.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/DMUtil.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 "SkStream.h"
7 #include "SkString.h"
8 #include "SkTArray.h"
9
10
11 // Writes a bitmap to a file.
12
13 namespace DM {
14
15 class WriteTask : public CpuTask {
16
17 public:
18 WriteTask(const Task& parent, // WriteTask must be a child task.
19 const char* sourceType, // E.g. "GM", "SKP". For humans.
20 SkBitmap bitmap); // Bitmap to encode to PNG and write to d isk.
21
22 // Takes ownership of SkStreamAsset
23 WriteTask(const Task& parent, // WriteTask must be a child task.
24 const char* sourceType, // E.g. "GM", "SKP". For humans.
25 SkStreamAsset* data, // Pre-encoded data to write to disk.
26 const char* ext); // File extension.
27
28 void draw() SK_OVERRIDE;
29 bool shouldSkip() const SK_OVERRIDE;
30 SkString name() const SK_OVERRIDE;
31
32 private:
33 SkTArray<SkString> fSuffixes;
34 const SkString fBaseName;
35 const SkString fSourceType;
36 const SkBitmap fBitmap;
37 SkAutoTDelete<SkStreamAsset> fData;
38 const char* fExtension;
39
40 void makeDirOrFail(SkString dir);
41 };
42
43 } // namespace DM
44
45 #endif // DMWriteTask_DEFINED
OLDNEW
« no previous file with comments | « dm/DMUtil.cpp ('k') | dm/DMWriteTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698