edisonn@google.com | 131d4ee | 2013-06-26 17:48:12 +0000 | [diff] [blame] | 1 | #include "SkPdfNameTreeNodeDictionary_autogen.h" |
| 2 | |
| 3 | SkPdfArray* SkPdfNameTreeNodeDictionary::Kids() const { |
| 4 | SkPdfArray* ret; |
| 5 | if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Kids", "", &ret)) return ret; |
| 6 | // TODO(edisonn): warn about missing required field, assert for known good pdfs |
| 7 | return NULL; |
| 8 | } |
| 9 | |
| 10 | SkPdfArray* SkPdfNameTreeNodeDictionary::Names() const { |
| 11 | SkPdfArray* ret; |
| 12 | if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Names", "", &ret)) return ret; |
| 13 | // TODO(edisonn): warn about missing required field, assert for known good pdfs |
| 14 | return NULL; |
| 15 | } |
| 16 | |
| 17 | SkPdfArray* SkPdfNameTreeNodeDictionary::Limits() const { |
| 18 | SkPdfArray* ret; |
| 19 | if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Limits", "", &ret)) return ret; |
| 20 | // TODO(edisonn): warn about missing required field, assert for known good pdfs |
| 21 | return NULL; |
| 22 | } |