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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dm/DMUtil.cpp ('k') | dm/DMWriteTask.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMWriteTask.h
diff --git a/dm/DMWriteTask.h b/dm/DMWriteTask.h
new file mode 100644
index 0000000000000000000000000000000000000000..fb80058fd092f89914e471badd43f92b8c76da79
--- /dev/null
+++ b/dm/DMWriteTask.h
@@ -0,0 +1,45 @@
+#ifndef DMWriteTask_DEFINED
+#define DMWriteTask_DEFINED
+
+#include "DMTask.h"
+#include "SkBitmap.h"
+#include "SkStream.h"
+#include "SkString.h"
+#include "SkTArray.h"
+
+
+// Writes a bitmap to a file.
+
+namespace DM {
+
+class WriteTask : public CpuTask {
+
+public:
+ WriteTask(const Task& parent, // WriteTask must be a child task.
+ const char* sourceType, // E.g. "GM", "SKP". For humans.
+ SkBitmap bitmap); // Bitmap to encode to PNG and write to disk.
+
+ // Takes ownership of SkStreamAsset
+ WriteTask(const Task& parent, // WriteTask must be a child task.
+ const char* sourceType, // E.g. "GM", "SKP". For humans.
+ SkStreamAsset* data, // Pre-encoded data to write to disk.
+ const char* ext); // File extension.
+
+ void draw() SK_OVERRIDE;
+ bool shouldSkip() const SK_OVERRIDE;
+ SkString name() const SK_OVERRIDE;
+
+private:
+ SkTArray<SkString> fSuffixes;
+ const SkString fBaseName;
+ const SkString fSourceType;
+ const SkBitmap fBitmap;
+ SkAutoTDelete<SkStreamAsset> fData;
+ const char* fExtension;
+
+ void makeDirOrFail(SkString dir);
+};
+
+} // namespace DM
+
+#endif // DMWriteTask_DEFINED
« 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