Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfActionDictionary_autogen.cpp

Issue 1266093003: Remove experimental/PdfViewer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-03 (Monday) 10:43:56 EDT Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 "SkPdfActionDictionary_autogen.h"
9 #include "SkPdfNativeDoc.h"
10
11 SkString SkPdfActionDictionary::Type(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Type", "");
13 if (doc) {ret = doc->resolveReference(ret);}
14 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isRe ference())) return ret->nameValue2();
15 // TODO(edisonn): warn about missing default value for optional fields
16 return SkString();
17 }
18
19 bool SkPdfActionDictionary::has_Type() const {
20 return get("Type", "") != NULL;
21 }
22
23 SkString SkPdfActionDictionary::S(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("S", "");
25 if (doc) {ret = doc->resolveReference(ret);}
26 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isRe ference())) return ret->nameValue2();
27 // TODO(edisonn): warn about missing required field, assert for known good pdf s
28 return SkString();
29 }
30
31 bool SkPdfActionDictionary::has_S() const {
32 return get("S", "") != NULL;
33 }
34
35 bool SkPdfActionDictionary::isNextADictionary(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Next", "");
37 if (doc) {ret = doc->resolveReference(ret);}
38 return ret != NULL && ret->isDictionary();
39 }
40
41 SkPdfDictionary* SkPdfActionDictionary::getNextAsDictionary(SkPdfNativeDoc* doc) {
42 SkPdfNativeObject* ret = get("Next", "");
43 if (doc) {ret = doc->resolveReference(ret);}
44 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret ->isReference())) return (SkPdfDictionary*)ret;
45 // TODO(edisonn): warn about missing default value for optional fields
46 return NULL;
47 }
48
49 bool SkPdfActionDictionary::isNextAArray(SkPdfNativeDoc* doc) {
50 SkPdfNativeObject* ret = get("Next", "");
51 if (doc) {ret = doc->resolveReference(ret);}
52 return ret != NULL && ret->isArray();
53 }
54
55 SkPdfArray* SkPdfActionDictionary::getNextAsArray(SkPdfNativeDoc* doc) {
56 SkPdfNativeObject* ret = get("Next", "");
57 if (doc) {ret = doc->resolveReference(ret);}
58 if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isR eference())) return (SkPdfArray*)ret;
59 // TODO(edisonn): warn about missing default value for optional fields
60 return NULL;
61 }
62
63 bool SkPdfActionDictionary::has_Next() const {
64 return get("Next", "") != NULL;
65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698