OLD | NEW |
1 #include "SkPdfFDFDictionary_autogen.h" | 1 #include "SkPdfFDFDictionary_autogen.h" |
2 | 2 |
3 SkPdfFileSpec SkPdfFDFDictionary::F() const { | 3 SkPdfFileSpec SkPdfFDFDictionary::F() const { |
4 SkPdfFileSpec ret; | 4 SkPdfFileSpec ret; |
5 if (FileSpecFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &
ret)) return ret; | 5 if (FileSpecFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &
ret)) return ret; |
6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
7 return SkPdfFileSpec(); | 7 return SkPdfFileSpec(); |
8 } | 8 } |
9 | 9 |
10 SkPdfArray* SkPdfFDFDictionary::ID() const { | 10 SkPdfArray* SkPdfFDFDictionary::ID() const { |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 69 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
70 return NULL; | 70 return NULL; |
71 } | 71 } |
72 | 72 |
73 SkPdfDictionary* SkPdfFDFDictionary::JavaScript() const { | 73 SkPdfDictionary* SkPdfFDFDictionary::JavaScript() const { |
74 SkPdfDictionary* ret; | 74 SkPdfDictionary* ret; |
75 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "JavaScr
ipt", "", &ret)) return ret; | 75 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "JavaScr
ipt", "", &ret)) return ret; |
76 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 76 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
77 return NULL; | 77 return NULL; |
78 } | 78 } |
OLD | NEW |