| Index: experimental/PdfViewer/pdf_auto_gen.h
|
| ===================================================================
|
| --- experimental/PdfViewer/pdf_auto_gen.h (revision 9643)
|
| +++ experimental/PdfViewer/pdf_auto_gen.h (working copy)
|
| @@ -25859,6 +25859,73 @@
|
| return """";
|
| }
|
|
|
| + SkPdfObject* LastModified() const {
|
| + SkPdfObject* ret;
|
| + if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "LastModified", "", &ret)) return ret;
|
| + return NULL;
|
| + }
|
| +
|
| + SkPdfObject* BBox() const {
|
| + SkPdfObject* ret;
|
| + if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BBox", "", &ret)) return ret;
|
| + // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| + return NULL;
|
| + }
|
| +
|
| + SkPdfObject* Matrix() const {
|
| + SkPdfObject* ret;
|
| + if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Matrix", "", &ret)) return ret;
|
| + return NULL;
|
| + }
|
| +
|
| + SkPdfDictionary* Resources() const {
|
| + SkPdfDictionary* ret;
|
| + if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Resources", "", &ret)) return ret;
|
| + return NULL;
|
| + }
|
| +
|
| + SkPdfDictionary* Group() const {
|
| + SkPdfDictionary* ret;
|
| + if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Group", "", &ret)) return ret;
|
| + return NULL;
|
| + }
|
| +
|
| + SkPdfDictionary* Ref() const {
|
| + SkPdfDictionary* ret;
|
| + if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Ref", "", &ret)) return ret;
|
| + return NULL;
|
| + }
|
| +
|
| + SkPdfObject* Metadata() const {
|
| + SkPdfObject* ret;
|
| + if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Metadata", "", &ret)) return ret;
|
| + return NULL;
|
| + }
|
| +
|
| + SkPdfDictionary* PieceInfo() const {
|
| + SkPdfDictionary* ret;
|
| + if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "PieceInfo", "", &ret)) return ret;
|
| + return NULL;
|
| + }
|
| +
|
| + long StructParent() const {
|
| + long ret;
|
| + if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "StructParent", "", &ret)) return ret;
|
| + return 0;
|
| + }
|
| +
|
| + long StructParents() const {
|
| + long ret;
|
| + if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "StructParents", "", &ret)) return ret;
|
| + return 0;
|
| + }
|
| +
|
| + SkPdfDictionary* OPI() const {
|
| + SkPdfDictionary* ret;
|
| + if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "OPI", "", &ret)) return ret;
|
| + return NULL;
|
| + }
|
| +
|
| };
|
|
|
|
|
| @@ -93805,3 +93872,4 @@
|
| }
|
|
|
| };
|
| +
|
|
|