OLD | NEW |
(Empty) | |
| 1 #include "SkPdfAppearanceDictionary_autogen.h" |
| 2 |
| 3 SkPdfStream* SkPdfAppearanceDictionary::getNAsStream() const { |
| 4 SkPdfStream* ret = NULL; |
| 5 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", &re
t)) return ret; |
| 6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 7 return NULL; |
| 8 } |
| 9 |
| 10 SkPdfDictionary* SkPdfAppearanceDictionary::getNAsDictionary() const { |
| 11 SkPdfDictionary* ret = NULL; |
| 12 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "",
&ret)) return ret; |
| 13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 14 return NULL; |
| 15 } |
| 16 |
| 17 SkPdfStream* SkPdfAppearanceDictionary::getRAsStream() const { |
| 18 SkPdfStream* ret = NULL; |
| 19 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "R", "", &re
t)) return ret; |
| 20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 21 return NULL; |
| 22 } |
| 23 |
| 24 SkPdfDictionary* SkPdfAppearanceDictionary::getRAsDictionary() const { |
| 25 SkPdfDictionary* ret = NULL; |
| 26 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "R", "",
&ret)) return ret; |
| 27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 28 return NULL; |
| 29 } |
| 30 |
| 31 SkPdfStream* SkPdfAppearanceDictionary::getDAsStream() const { |
| 32 SkPdfStream* ret = NULL; |
| 33 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "", &re
t)) return ret; |
| 34 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 35 return NULL; |
| 36 } |
| 37 |
| 38 SkPdfDictionary* SkPdfAppearanceDictionary::getDAsDictionary() const { |
| 39 SkPdfDictionary* ret = NULL; |
| 40 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "",
&ret)) return ret; |
| 41 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 42 return NULL; |
| 43 } |
| 44 |
OLD | NEW |