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

Unified Diff: dm/DMPDFTask.h

Issue 316643003: DM: SKP source / PDF backend (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: cast Created 6 years, 6 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
index d273df66d88af0128155af30d9b726c64163213b..d1076117325791d4052fec50b43c419c913d998f 100644
--- a/dm/DMPDFTask.h
+++ b/dm/DMPDFTask.h
@@ -1,27 +1,33 @@
#ifndef DMPDFTask_DEFINED
#define DMPDFTask_DEFINED
-#include "DMPDFRasterizeTask.h"
#include "DMExpectations.h"
+#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 using Skia's PDF backend.
+// 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* suffix,
+ PDFTask(const char*,
Reporter*,
TaskRunner*,
- const Expectations&,
skiagm::GMRegistry::Factory,
RasterizePdfProc);
+ PDFTask(Reporter*,
+ TaskRunner*,
+ SkPicture*,
+ SkString name,
+ RasterizePdfProc);
+
virtual void draw() SK_OVERRIDE;
virtual bool shouldSkip() const SK_OVERRIDE;
@@ -29,9 +35,11 @@ public:
virtual SkString name() const SK_OVERRIDE { return fName; }
private:
+ // One of these two will be set.
SkAutoTDelete<skiagm::GM> fGM;
+ SkAutoTUnref<SkPicture> fPicture;
+
const SkString fName;
- const Expectations& fExpectations;
RasterizePdfProc fRasterize;
};
« 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