OLD | NEW |
1 #include "SkPdfBoxColorInformationDictionary_autogen.h" | 1 #include "SkPdfBoxColorInformationDictionary_autogen.h" |
2 | 2 |
3 SkPdfDictionary* SkPdfBoxColorInformationDictionary::CropBox() const { | 3 SkPdfDictionary* SkPdfBoxColorInformationDictionary::CropBox() const { |
4 SkPdfDictionary* ret; | 4 SkPdfDictionary* ret; |
5 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "CropBox
", "", &ret)) return ret; | 5 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "CropBox
", "", &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 NULL; | 7 return NULL; |
8 } | 8 } |
9 | 9 |
10 SkPdfDictionary* SkPdfBoxColorInformationDictionary::BleedBox() const { | 10 SkPdfDictionary* SkPdfBoxColorInformationDictionary::BleedBox() const { |
11 SkPdfDictionary* ret; | 11 SkPdfDictionary* ret; |
12 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BleedBo
x", "", &ret)) return ret; | 12 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BleedBo
x", "", &ret)) return ret; |
13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
14 return NULL; | 14 return NULL; |
15 } | 15 } |
16 | 16 |
17 SkPdfDictionary* SkPdfBoxColorInformationDictionary::TrimBox() const { | 17 SkPdfDictionary* SkPdfBoxColorInformationDictionary::TrimBox() const { |
18 SkPdfDictionary* ret; | 18 SkPdfDictionary* ret; |
19 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "TrimBox
", "", &ret)) return ret; | 19 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "TrimBox
", "", &ret)) return ret; |
20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
21 return NULL; | 21 return NULL; |
22 } | 22 } |
23 | 23 |
24 SkPdfDictionary* SkPdfBoxColorInformationDictionary::ArtBox() const { | 24 SkPdfDictionary* SkPdfBoxColorInformationDictionary::ArtBox() const { |
25 SkPdfDictionary* ret; | 25 SkPdfDictionary* ret; |
26 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ArtBox"
, "", &ret)) return ret; | 26 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ArtBox"
, "", &ret)) return ret; |
27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
28 return NULL; | 28 return NULL; |
29 } | 29 } |
| 30 |
OLD | NEW |