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

Unified Diff: dm/DMPDFTask.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/DMPDFRasterizeTask.cpp ('k') | dm/DMPDFTask.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMPDFTask.h
diff --git a/dm/DMPDFTask.h b/dm/DMPDFTask.h
new file mode 100644
index 0000000000000000000000000000000000000000..8c3ba1dd1280c41c77f9b05e74111f4b6102f8f1
--- /dev/null
+++ b/dm/DMPDFTask.h
@@ -0,0 +1,47 @@
+#ifndef DMPDFTask_DEFINED
+#define DMPDFTask_DEFINED
+
+#include "DMPDFRasterizeTask.h"
+#include "DMTask.h"
+#include "SkBitmap.h"
+#include "SkPicture.h"
+#include "SkString.h"
+#include "SkTemplates.h"
+#include "gm.h"
+
+namespace DM {
+
+// This task renders a GM or SKP using Skia's PDF backend.
+// If rasterizePdfProc is non-NULL, it will spawn a PDFRasterizeTask.
+class PDFTask : public CpuTask {
+public:
+ PDFTask(const char*,
+ Reporter*,
+ TaskRunner*,
+ skiagm::GMRegistry::Factory,
+ RasterizePdfProc);
+
+ PDFTask(Reporter*,
+ TaskRunner*,
+ const SkPicture*,
+ SkString name,
+ RasterizePdfProc);
+
+ void draw() SK_OVERRIDE;
+
+ bool shouldSkip() const SK_OVERRIDE;
+
+ SkString name() const SK_OVERRIDE { return fName; }
+
+private:
+ // One of these two will be set.
+ SkAutoTDelete<skiagm::GM> fGM;
+ SkAutoTUnref<const SkPicture> fPicture;
+
+ const SkString fName;
+ RasterizePdfProc fRasterize;
+};
+
+} // namespace DM
+
+#endif // DMPDFTask_DEFINED
« no previous file with comments | « dm/DMPDFRasterizeTask.cpp ('k') | dm/DMPDFTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698