OLD | NEW |
| (Empty) |
1 #include "SkPdfFDFNamedPageReferenceDictionary_autogen.h" | |
2 | |
3 std::string SkPdfFDFNamedPageReferenceDictionary::Name() const { | |
4 std::string ret; | |
5 if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Name", "",
&ret)) return ret; | |
6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
7 return ""; | |
8 } | |
9 | |
10 SkPdfFileSpec SkPdfFDFNamedPageReferenceDictionary::F() const { | |
11 SkPdfFileSpec ret; | |
12 if (FileSpecFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &
ret)) return ret; | |
13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
14 return SkPdfFileSpec(); | |
15 } | |
OLD | NEW |