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

Unified Diff: src/pdf/SkPDFFormXObject.h

Issue 18585002: Implemented transparent gradients (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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
Index: src/pdf/SkPDFFormXObject.h
diff --git a/src/pdf/SkPDFFormXObject.h b/src/pdf/SkPDFFormXObject.h
index b1a6f7425d65176105a3d06ebb5285f1a29fc236..ea87b6e5b6c3e0cc55afd41e54051b0234f3b3be 100644
--- a/src/pdf/SkPDFFormXObject.h
+++ b/src/pdf/SkPDFFormXObject.h
@@ -12,6 +12,7 @@
#include "SkPDFStream.h"
#include "SkPDFTypes.h"
+#include "SkRect.h"
#include "SkRefCnt.h"
#include "SkString.h"
@@ -36,6 +37,9 @@ public:
* @param device The set of graphical elements on this form.
*/
explicit SkPDFFormXObject(SkPDFDevice* device);
+ explicit SkPDFFormXObject(SkStream* content, SkPDFDict* resourceDict,
vandebo (ex-Chrome) 2013/07/03 17:07:01 nit: I like parameters to have a logical order: co
vandebo (ex-Chrome) 2013/07/03 17:07:01 This constructor needs a comment block.
ducky 2013/07/03 23:32:09 Done.
ducky 2013/07/03 23:32:09 Done.
+ SkTSet<SkPDFObject*>& resources,
+ SkRect bbox);
virtual ~SkPDFFormXObject();
// The SkPDFObject interface.

Powered by Google App Engine
This is Rietveld 408576698