| OLD | NEW |
| 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 |
| 1 #include "SkPdfJavascriptDictionary_autogen.h" | 8 #include "SkPdfJavascriptDictionary_autogen.h" |
| 2 | 9 |
| 3 | 10 |
| 4 #include "SkPdfNativeDoc.h" | 11 #include "SkPdfNativeDoc.h" |
| 5 bool SkPdfJavascriptDictionary::isBeforeAString(SkPdfNativeDoc* doc) { | 12 bool SkPdfJavascriptDictionary::isBeforeAString(SkPdfNativeDoc* doc) { |
| 6 SkPdfNativeObject* ret = get("Before", ""); | 13 SkPdfNativeObject* ret = get("Before", ""); |
| 7 if (doc) {ret = doc->resolveReference(ret);} | 14 if (doc) {ret = doc->resolveReference(ret);} |
| 8 return ret != NULL && ret->isAnyString(); | 15 return ret != NULL && ret->isAnyString(); |
| 9 } | 16 } |
| 10 | 17 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 if (doc) {ret = doc->resolveReference(ret);} | 78 if (doc) {ret = doc->resolveReference(ret);} |
| 72 if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isR
eference())) return (SkPdfArray*)ret; | 79 if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isR
eference())) return (SkPdfArray*)ret; |
| 73 // TODO(edisonn): warn about missing default value for optional fields | 80 // TODO(edisonn): warn about missing default value for optional fields |
| 74 return NULL; | 81 return NULL; |
| 75 } | 82 } |
| 76 | 83 |
| 77 bool SkPdfJavascriptDictionary::has_Doc() const { | 84 bool SkPdfJavascriptDictionary::has_Doc() const { |
| 78 return get("Doc", "") != NULL; | 85 return get("Doc", "") != NULL; |
| 79 } | 86 } |
| 80 | 87 |
| OLD | NEW |