| OLD | NEW |
| 1 #ifndef __DEFINED__SkPdfActionDictionary | 1 #ifndef __DEFINED__SkPdfActionDictionary |
| 2 #define __DEFINED__SkPdfActionDictionary | 2 #define __DEFINED__SkPdfActionDictionary |
| 3 | 3 |
| 4 #include "SkPdfEnums_autogen.h" | 4 #include "SkPdfEnums_autogen.h" |
| 5 #include "SkPdfArray_autogen.h" | 5 #include "SkPdfArray_autogen.h" |
| 6 #include "SkPdfDictionary_autogen.h" | 6 #include "SkPdfDictionary_autogen.h" |
| 7 | 7 |
| 8 class SkPdfActionDictionary : public SkPdfDictionary { | 8 class SkPdfActionDictionary : public SkPdfDictionary { |
| 9 public: | 9 public: |
| 10 virtual SkPdfObjectType getType() const { return kObjectDictionaryActionDictio
nary_SkPdfObjectType;} | 10 virtual SkPdfObjectType getType() const { return kActionDictionary_SkPdfObject
Type;} |
| 11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kObjectD
ictionaryActionDictionary_SkPdfObjectType + 1);} | 11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kActionD
ictionary_SkPdfObjectType + 1);} |
| 12 public: | 12 public: |
| 13 virtual SkPdfActionDictionary* asActionDictionary() {return this;} | 13 virtual SkPdfActionDictionary* asActionDictionary() {return this;} |
| 14 virtual const SkPdfActionDictionary* asActionDictionary() const {return this;} | 14 virtual const SkPdfActionDictionary* asActionDictionary() const {return this;} |
| 15 | 15 |
| 16 private: | 16 private: |
| 17 virtual SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() {return
NULL;} | 17 virtual SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() {return
NULL;} |
| 18 virtual const SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() co
nst {return NULL;} | 18 virtual const SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() co
nst {return NULL;} |
| 19 | 19 |
| 20 virtual SkPdfAlternateImageDictionary* asAlternateImageDictionary() {return NU
LL;} | 20 virtual SkPdfAlternateImageDictionary* asAlternateImageDictionary() {return NU
LL;} |
| 21 virtual const SkPdfAlternateImageDictionary* asAlternateImageDictionary() cons
t {return NULL;} | 21 virtual const SkPdfAlternateImageDictionary* asAlternateImageDictionary() cons
t {return NULL;} |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 SkPdfArray getNextAsArray() const { | 557 SkPdfArray getNextAsArray() const { |
| 558 SkPdfArray ret = SkPdfArray(); | 558 SkPdfArray ret = SkPdfArray(); |
| 559 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Next", "",
&ret)) return ret; | 559 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Next", "",
&ret)) return ret; |
| 560 // TODO(edisonn): warn about missing required field, assert for known good p
dfs | 560 // TODO(edisonn): warn about missing required field, assert for known good p
dfs |
| 561 return SkPdfArray(); | 561 return SkPdfArray(); |
| 562 } | 562 } |
| 563 | 563 |
| 564 }; | 564 }; |
| 565 | 565 |
| 566 #endif // __DEFINED__SkPdfActionDictionary | 566 #endif // __DEFINED__SkPdfActionDictionary |
| OLD | NEW |