OLD | NEW |
(Empty) | |
| 1 #include "SkPdfAttributeObjectDictionary_autogen.h" |
| 2 |
| 3 |
| 4 #include "SkPdfNativeDoc.h" |
| 5 SkString SkPdfAttributeObjectDictionary::O(SkPdfNativeDoc* doc) { |
| 6 SkPdfNativeObject* ret = get("O", ""); |
| 7 if (doc) {ret = doc->resolveReference(ret);} |
| 8 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isRe
ference())) return ret->nameValue2(); |
| 9 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 10 return SkString(); |
| 11 } |
| 12 |
| 13 bool SkPdfAttributeObjectDictionary::has_O() const { |
| 14 return get("O", "") != NULL; |
| 15 } |
| 16 |
OLD | NEW |