Index: experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.h |
=================================================================== |
--- experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.h (revision 9765) |
+++ experimental/PdfViewer/autogen/SkPdfNameTreeNodeDictionary_autogen.h (working copy) |
@@ -533,13 +533,7 @@ |
return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Kids", "", NULL)); |
} |
- SkPdfArray* Kids() const { |
- SkPdfArray* ret; |
- if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Kids", "", &ret)) return ret; |
- // TODO(edisonn): warn about missing required field, assert for known good pdfs |
- return NULL; |
- } |
- |
+ SkPdfArray* Kids() const; |
/** (Root and leaf nodes only; required in leaf nodes; present in the root node if and only if Kids |
* is not present) An array of the form |
* [key1 value1 key2 value2 ... keyn valuen ] |
@@ -550,13 +544,7 @@ |
return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Names", "", NULL)); |
} |
- SkPdfArray* Names() const { |
- SkPdfArray* ret; |
- if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Names", "", &ret)) return ret; |
- // TODO(edisonn): warn about missing required field, assert for known good pdfs |
- return NULL; |
- } |
- |
+ SkPdfArray* Names() const; |
/** (Intermediate and leaf nodes only; required) An array of two strings, specifying the (lexi- |
* cally) least and greatest keys included in the Names array of a leaf node or in the Names |
* arrays of any leaf nodes that are descendants of an intermediate node. |
@@ -565,13 +553,7 @@ |
return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Limits", "", NULL)); |
} |
- SkPdfArray* Limits() const { |
- SkPdfArray* ret; |
- if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Limits", "", &ret)) return ret; |
- // TODO(edisonn): warn about missing required field, assert for known good pdfs |
- return NULL; |
- } |
- |
+ SkPdfArray* Limits() const; |
}; |
#endif // __DEFINED__SkPdfNameTreeNodeDictionary |