diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-19 18:58:34 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-19 18:58:34 +0000 |
commit | c84fb471d1428b254c2326d4ce68497c09d2ec45 (patch) | |
tree | 1c4c5a4e9128bd1bad60739c59aee2796624abc8 /include | |
parent | 6645cde43d7dbf0df76dbda2c089d8f58560e3e2 (diff) |
Adds SkPDFResourceDict class to manage resource dicts. Refactors existing code to use this class.
BUG=
R=vandebo@chromium.org, edisonn@google.com
Author: richardlin@chromium.org
Review URL: https://chromiumcodereview.appspot.com/18977002
git-svn-id: http://skia.googlecode.com/svn/trunk@10202 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/pdf/SkPDFDevice.h | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/include/pdf/SkPDFDevice.h b/include/pdf/SkPDFDevice.h index d10f330e3a..6c5e4574d4 100644 --- a/include/pdf/SkPDFDevice.h +++ b/include/pdf/SkPDFDevice.h @@ -28,6 +28,7 @@ class SkPDFFormXObject; class SkPDFGlyphSetMap; class SkPDFGraphicState; class SkPDFObject; +class SkPDFResourceDict; class SkPDFShader; class SkPDFStream; template <typename T> class SkTSet; @@ -147,23 +148,7 @@ public: /** Returns the resource dictionary for this device. */ - SK_API SkPDFDict* getResourceDict(); - - /** Get the list of resources (PDF objects) used on this page. - * This method will add to newResourceObjects any objects that this method - * depends on, but not already in knownResourceObjects. This might operate - * recursively so if this object depends on another object and that object - * depends on two more, all three objects will be added. - * - * @param knownResourceObjects The set of resources to be ignored. - * @param newResourceObjects The set to append dependant resources to. - * @param recursive If recursive is true, get the resources of the - * device's resources recursively. (Useful for adding - * objects to the catalog.) - */ - SK_API void getResources(const SkTSet<SkPDFObject*>& knownResourceObjects, - SkTSet<SkPDFObject*>* newResourceObjects, - bool recursive) const; + SK_API SkPDFResourceDict* getResourceDict(); /** Get the fonts used on this device. */ @@ -223,7 +208,7 @@ private: SkClipStack fExistingClipStack; SkRegion fExistingClipRegion; SkPDFArray* fAnnotations; - SkPDFDict* fResourceDict; + SkPDFResourceDict* fResourceDict; SkTDArray<NamedDestination*> fNamedDestinations; SkTDArray<SkPDFGraphicState*> fGraphicStateResources; |