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

Unified Diff: src/pdf/SkPDFTypes.h

Issue 1394263003: SkPDF: Optionally output PDF/A-2b archive format. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: works on windows Created 5 years, 2 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/SkPDFTypes.h
diff --git a/src/pdf/SkPDFTypes.h b/src/pdf/SkPDFTypes.h
index ec527fc932cfd33737942f50b479ba15085ce4da..5d3a9a19eeb5ba182ad4a27cbfacbf2acf83bb41 100644
--- a/src/pdf/SkPDFTypes.h
+++ b/src/pdf/SkPDFTypes.h
@@ -346,6 +346,12 @@ public:
*/
bool addObject(SkPDFObject* obj);
+ /** Add the passed object to the catalog, as well as all it's dependencies.
tomhudson 2015/10/09 15:31:37 no apostrophe!
hal.canary 2015/10/09 19:13:27 Done. Im so embarrassed.
+ * @param obj The object to add. If nullptr, this is a noop.
+ * @param subs Will be passed to obj->addResources().
+ */
+ void addObjectRecursively(SkPDFObject* obj, const SkPDFSubstituteMap& subs);
+
/** Get the object number for the passed object.
* @param obj The object of interest.
*/

Powered by Google App Engine
This is Rietveld 408576698