| OLD | NEW |
| (Empty) |
| 1 #include "SkPdfImportDataActionDictionary_autogen.h" | |
| 2 | |
| 3 std::string SkPdfImportDataActionDictionary::S() const { | |
| 4 std::string ret; | |
| 5 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)
) return ret; | |
| 6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 7 return ""; | |
| 8 } | |
| 9 | |
| 10 SkPdfFileSpec SkPdfImportDataActionDictionary::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 |