| OLD | NEW |
| 1 #include "SkPdfType5HalftoneDictionary_autogen.h" | 1 #include "SkPdfType5HalftoneDictionary_autogen.h" |
| 2 | 2 |
| 3 std::string SkPdfType5HalftoneDictionary::Type() const { | 3 std::string SkPdfType5HalftoneDictionary::Type() const { |
| 4 std::string ret; | 4 std::string ret; |
| 5 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &r
et)) return 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 | 6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 7 return ""; | 7 return ""; |
| 8 } | 8 } |
| 9 | 9 |
| 10 double SkPdfType5HalftoneDictionary::HalftoneType() const { | 10 double SkPdfType5HalftoneDictionary::HalftoneType() const { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 43 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 44 return NULL; | 44 return NULL; |
| 45 } | 45 } |
| 46 | 46 |
| 47 SkPdfStream* SkPdfType5HalftoneDictionary::getDefaultAsStream() const { | 47 SkPdfStream* SkPdfType5HalftoneDictionary::getDefaultAsStream() const { |
| 48 SkPdfStream* ret = NULL; | 48 SkPdfStream* ret = NULL; |
| 49 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Default", "
", &ret)) return ret; | 49 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Default", "
", &ret)) return ret; |
| 50 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 50 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 51 return NULL; | 51 return NULL; |
| 52 } | 52 } |
| 53 |
| OLD | NEW |