| OLD | NEW |
| 1 #include "SkPdfBlockLevelStructureElementsDictionary_autogen.h" | 1 #include "SkPdfBlockLevelStructureElementsDictionary_autogen.h" |
| 2 | 2 |
| 3 double SkPdfBlockLevelStructureElementsDictionary::SpaceBefore() const { | 3 double SkPdfBlockLevelStructureElementsDictionary::SpaceBefore() const { |
| 4 double ret; | 4 double ret; |
| 5 if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "SpaceBefore
", "", &ret)) return ret; | 5 if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "SpaceBefore
", "", &ret)) 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 0; | 7 return 0; |
| 8 } | 8 } |
| 9 | 9 |
| 10 double SkPdfBlockLevelStructureElementsDictionary::SpaceAfter() const { | 10 double SkPdfBlockLevelStructureElementsDictionary::SpaceAfter() const { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 83 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 84 return ""; | 84 return ""; |
| 85 } | 85 } |
| 86 | 86 |
| 87 std::string SkPdfBlockLevelStructureElementsDictionary::InlineAlign() const { | 87 std::string SkPdfBlockLevelStructureElementsDictionary::InlineAlign() const { |
| 88 std::string ret; | 88 std::string ret; |
| 89 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "InlineAlign",
"", &ret)) return ret; | 89 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "InlineAlign",
"", &ret)) return ret; |
| 90 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | 90 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 91 return ""; | 91 return ""; |
| 92 } | 92 } |
| OLD | NEW |