| Index: experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfWidgetAnnotationDictionary_autogen.cpp
|
| diff --git a/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfWidgetAnnotationDictionary_autogen.cpp b/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfWidgetAnnotationDictionary_autogen.cpp
|
| deleted file mode 100644
|
| index ea26401708098b400d597e9656c5d2bc30f1c7a2..0000000000000000000000000000000000000000
|
| --- a/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfWidgetAnnotationDictionary_autogen.cpp
|
| +++ /dev/null
|
| @@ -1,57 +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 "SkPdfWidgetAnnotationDictionary_autogen.h"
|
| -#include "SkPdfNativeDoc.h"
|
| -
|
| -SkString SkPdfWidgetAnnotationDictionary::Subtype(SkPdfNativeDoc* doc) {
|
| - SkPdfNativeObject* ret = get("Subtype", "");
|
| - 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 SkPdfWidgetAnnotationDictionary::has_Subtype() const {
|
| - return get("Subtype", "") != NULL;
|
| -}
|
| -
|
| -SkString SkPdfWidgetAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
|
| - SkPdfNativeObject* ret = get("Contents", "");
|
| - 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 default value for optional fields
|
| - return SkString();
|
| -}
|
| -
|
| -bool SkPdfWidgetAnnotationDictionary::has_Contents() const {
|
| - return get("Contents", "") != NULL;
|
| -}
|
| -
|
| -SkString SkPdfWidgetAnnotationDictionary::H(SkPdfNativeDoc* doc) {
|
| - SkPdfNativeObject* ret = get("H", "");
|
| - 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 SkPdfWidgetAnnotationDictionary::has_H() const {
|
| - return get("H", "") != NULL;
|
| -}
|
| -
|
| -SkPdfDictionary* SkPdfWidgetAnnotationDictionary::MK(SkPdfNativeDoc* doc) {
|
| - SkPdfNativeObject* ret = get("MK", "");
|
| - if (doc) {ret = doc->resolveReference(ret);}
|
| - if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfDictionary*)ret;
|
| - // TODO(edisonn): warn about missing default value for optional fields
|
| - return NULL;
|
| -}
|
| -
|
| -bool SkPdfWidgetAnnotationDictionary::has_MK() const {
|
| - return get("MK", "") != NULL;
|
| -}
|
|
|