From ab0a50979b9eb4dfa3320eff7e187e41efedf7a9 Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Fri, 8 Aug 2014 14:30:41 +0200 Subject: Update Chromium to beta version 37.0.2062.68 Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca Reviewed-by: Andras Becsi --- .../pdfapi/SkPdfBoxStyleDictionary_autogen.cpp | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 chromium/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfBoxStyleDictionary_autogen.cpp (limited to 'chromium/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfBoxStyleDictionary_autogen.cpp') diff --git a/chromium/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfBoxStyleDictionary_autogen.cpp b/chromium/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfBoxStyleDictionary_autogen.cpp new file mode 100644 index 00000000000..9b44a4ef284 --- /dev/null +++ b/chromium/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfBoxStyleDictionary_autogen.cpp @@ -0,0 +1,57 @@ +/* + * 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 "SkPdfBoxStyleDictionary_autogen.h" +#include "SkPdfNativeDoc.h" + +SkPdfArray* SkPdfBoxStyleDictionary::C(SkPdfNativeDoc* doc) { + SkPdfNativeObject* ret = get("C", ""); + 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 SkPdfBoxStyleDictionary::has_C() const { + return get("C", "") != NULL; +} + +double SkPdfBoxStyleDictionary::W(SkPdfNativeDoc* doc) { + SkPdfNativeObject* ret = get("W", ""); + if (doc) {ret = doc->resolveReference(ret);} + if ((ret != NULL && ret->isNumber()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->numberValue(); + // TODO(edisonn): warn about missing default value for optional fields + return 0; +} + +bool SkPdfBoxStyleDictionary::has_W() const { + return get("W", "") != NULL; +} + +SkString SkPdfBoxStyleDictionary::S(SkPdfNativeDoc* doc) { + SkPdfNativeObject* ret = get("S", ""); + 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 default value for optional fields + return SkString(); +} + +bool SkPdfBoxStyleDictionary::has_S() const { + return get("S", "") != NULL; +} + +SkPdfArray* SkPdfBoxStyleDictionary::D(SkPdfNativeDoc* doc) { + SkPdfNativeObject* ret = get("D", ""); + 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 SkPdfBoxStyleDictionary::has_D() const { + return get("D", "") != NULL; +} -- cgit v1.2.3