aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfSeparationDictionary_autogen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfSeparationDictionary_autogen.cpp')
-rw-r--r--experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfSeparationDictionary_autogen.cpp65
1 files changed, 0 insertions, 65 deletions
diff --git a/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfSeparationDictionary_autogen.cpp b/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfSeparationDictionary_autogen.cpp
deleted file mode 100644
index 355f69e031..0000000000
--- a/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfSeparationDictionary_autogen.cpp
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
-
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "SkPdfSeparationDictionary_autogen.h"
-#include "SkPdfNativeDoc.h"
-
-SkPdfArray* SkPdfSeparationDictionary::Pages(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Pages", "");
- if (doc) {ret = doc->resolveReference(ret);}
- if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfArray*)ret;
- // TODO(edisonn): warn about missing required field, assert for known good pdfs
- return NULL;
-}
-
-bool SkPdfSeparationDictionary::has_Pages() const {
- return get("Pages", "") != NULL;
-}
-
-bool SkPdfSeparationDictionary::isDeviceColorantAName(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("DeviceColorant", "");
- if (doc) {ret = doc->resolveReference(ret);}
- return ret != NULL && ret->isName();
-}
-
-SkString SkPdfSeparationDictionary::getDeviceColorantAsName(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("DeviceColorant", "");
- if (doc) {ret = doc->resolveReference(ret);}
- if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
- // TODO(edisonn): warn about missing required field, assert for known good pdfs
- return SkString();
-}
-
-bool SkPdfSeparationDictionary::isDeviceColorantAString(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("DeviceColorant", "");
- if (doc) {ret = doc->resolveReference(ret);}
- return ret != NULL && ret->isAnyString();
-}
-
-SkString SkPdfSeparationDictionary::getDeviceColorantAsString(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("DeviceColorant", "");
- if (doc) {ret = doc->resolveReference(ret);}
- if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
- // TODO(edisonn): warn about missing required field, assert for known good pdfs
- return SkString();
-}
-
-bool SkPdfSeparationDictionary::has_DeviceColorant() const {
- return get("DeviceColorant", "") != NULL;
-}
-
-SkPdfArray* SkPdfSeparationDictionary::ColorSpace(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("ColorSpace", "");
- if (doc) {ret = doc->resolveReference(ret);}
- if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfArray*)ret;
- // TODO(edisonn): warn about missing default value for optional fields
- return NULL;
-}
-
-bool SkPdfSeparationDictionary::has_ColorSpace() const {
- return get("ColorSpace", "") != NULL;
-}