| OLD | NEW |
| (Empty) |
| 1 #include "SkPdfType0FontDictionary_autogen.h" | |
| 2 | |
| 3 std::string SkPdfType0FontDictionary::Type() const { | |
| 4 std::string ret; | |
| 5 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &r
et)) return ret; | |
| 6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 7 return ""; | |
| 8 } | |
| 9 | |
| 10 std::string SkPdfType0FontDictionary::Subtype() const { | |
| 11 std::string ret; | |
| 12 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "",
&ret)) return ret; | |
| 13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 14 return ""; | |
| 15 } | |
| 16 | |
| 17 std::string SkPdfType0FontDictionary::BaseFont() const { | |
| 18 std::string ret; | |
| 19 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BaseFont", ""
, &ret)) return ret; | |
| 20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 21 return ""; | |
| 22 } | |
| 23 | |
| 24 std::string SkPdfType0FontDictionary::getEncodingAsName() const { | |
| 25 std::string ret = ""; | |
| 26 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Encoding", ""
, &ret)) return ret; | |
| 27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 28 return ""; | |
| 29 } | |
| 30 | |
| 31 SkPdfStream* SkPdfType0FontDictionary::getEncodingAsStream() const { | |
| 32 SkPdfStream* ret = NULL; | |
| 33 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Encoding",
"", &ret)) return ret; | |
| 34 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 35 return NULL; | |
| 36 } | |
| 37 | |
| 38 SkPdfArray* SkPdfType0FontDictionary::DescendantFonts() const { | |
| 39 SkPdfArray* ret; | |
| 40 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "DescendantFo
nts", "", &ret)) return ret; | |
| 41 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 42 return NULL; | |
| 43 } | |
| 44 | |
| 45 SkPdfStream* SkPdfType0FontDictionary::ToUnicode() const { | |
| 46 SkPdfStream* ret; | |
| 47 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ToUnicode",
"", &ret)) return ret; | |
| 48 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 49 return NULL; | |
| 50 } | |
| OLD | NEW |