| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright 2013 Google Inc. | |
| 3 | |
| 4 * Use of this source code is governed by a BSD-style license that can be | |
| 5 * found in the LICENSE file. | |
| 6 */ | |
| 7 | |
| 8 #include "SkPdfCIDSystemInfoDictionary_autogen.h" | |
| 9 #include "SkPdfNativeDoc.h" | |
| 10 | |
| 11 SkString SkPdfCIDSystemInfoDictionary::Registry(SkPdfNativeDoc* doc) { | |
| 12 SkPdfNativeObject* ret = get("Registry", ""); | |
| 13 if (doc) {ret = doc->resolveReference(ret);} | |
| 14 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret-
>isReference())) return ret->stringValue2(); | |
| 15 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 16 return SkString(); | |
| 17 } | |
| 18 | |
| 19 bool SkPdfCIDSystemInfoDictionary::has_Registry() const { | |
| 20 return get("Registry", "") != NULL; | |
| 21 } | |
| 22 | |
| 23 SkString SkPdfCIDSystemInfoDictionary::Ordering(SkPdfNativeDoc* doc) { | |
| 24 SkPdfNativeObject* ret = get("Ordering", ""); | |
| 25 if (doc) {ret = doc->resolveReference(ret);} | |
| 26 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret-
>isReference())) return ret->stringValue2(); | |
| 27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 28 return SkString(); | |
| 29 } | |
| 30 | |
| 31 bool SkPdfCIDSystemInfoDictionary::has_Ordering() const { | |
| 32 return get("Ordering", "") != NULL; | |
| 33 } | |
| 34 | |
| 35 int64_t SkPdfCIDSystemInfoDictionary::Supplement(SkPdfNativeDoc* doc) { | |
| 36 SkPdfNativeObject* ret = get("Supplement", ""); | |
| 37 if (doc) {ret = doc->resolveReference(ret);} | |
| 38 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->i
sReference())) return ret->intValue(); | |
| 39 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 40 return 0; | |
| 41 } | |
| 42 | |
| 43 bool SkPdfCIDSystemInfoDictionary::has_Supplement() const { | |
| 44 return get("Supplement", "") != NULL; | |
| 45 } | |
| OLD | NEW |