| #include "SkPdfTableAttributesDictionary_autogen.h" |
| |
| long SkPdfTableAttributesDictionary::RowSpan() const { |
| long ret; |
| if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "RowSpan", "", &ret)) return ret; |
| // TODO(edisonn): warn about missing required field, assert for known good pdfs |
| return 0; |
| } |
| |
| long SkPdfTableAttributesDictionary::ColSpan() const { |
| long ret; |
| if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ColSpan", "", &ret)) return ret; |
| // TODO(edisonn): warn about missing required field, assert for known good pdfs |
| return 0; |
| } |