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