OLD | NEW |
| (Empty) |
1 #include "SkPdfIccProfileStreamDictionary_autogen.h" | |
2 | |
3 long SkPdfIccProfileStreamDictionary::N() const { | |
4 long ret; | |
5 if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", &ret)
) return ret; | |
6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
7 return 0; | |
8 } | |
9 | |
10 SkPdfArray* SkPdfIccProfileStreamDictionary::getAlternateAsArray() const { | |
11 SkPdfArray* ret = NULL; | |
12 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Alternate",
"", &ret)) return ret; | |
13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
14 return NULL; | |
15 } | |
16 | |
17 std::string SkPdfIccProfileStreamDictionary::getAlternateAsName() const { | |
18 std::string ret = ""; | |
19 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Alternate", "
", &ret)) return ret; | |
20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
21 return ""; | |
22 } | |
23 | |
24 SkPdfArray* SkPdfIccProfileStreamDictionary::Range() const { | |
25 SkPdfArray* ret; | |
26 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Range", "",
&ret)) return ret; | |
27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
28 return NULL; | |
29 } | |
30 | |
31 SkPdfStream* SkPdfIccProfileStreamDictionary::Metadata() const { | |
32 SkPdfStream* ret; | |
33 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Metadata",
"", &ret)) return ret; | |
34 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
35 return NULL; | |
36 } | |
OLD | NEW |