OLD | NEW |
(Empty) | |
| 1 #include "SkPdfDocumentCatalogActionsDictionary_autogen.h" |
| 2 |
| 3 SkPdfDictionary* SkPdfDocumentCatalogActionsDictionary::DC() const { |
| 4 SkPdfDictionary* ret; |
| 5 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "DC", ""
, &ret)) return ret; |
| 6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 7 return NULL; |
| 8 } |
| 9 |
| 10 SkPdfDictionary* SkPdfDocumentCatalogActionsDictionary::WS() const { |
| 11 SkPdfDictionary* ret; |
| 12 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "WS", ""
, &ret)) return ret; |
| 13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 14 return NULL; |
| 15 } |
| 16 |
| 17 SkPdfDictionary* SkPdfDocumentCatalogActionsDictionary::DS() const { |
| 18 SkPdfDictionary* ret; |
| 19 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "DS", ""
, &ret)) return ret; |
| 20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 21 return NULL; |
| 22 } |
| 23 |
| 24 SkPdfDictionary* SkPdfDocumentCatalogActionsDictionary::WP() const { |
| 25 SkPdfDictionary* ret; |
| 26 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "WP", ""
, &ret)) return ret; |
| 27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 28 return NULL; |
| 29 } |
| 30 |
| 31 SkPdfDictionary* SkPdfDocumentCatalogActionsDictionary::DP() const { |
| 32 SkPdfDictionary* ret; |
| 33 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "DP", ""
, &ret)) return ret; |
| 34 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 35 return NULL; |
| 36 } |
| 37 |
OLD | NEW |