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

Unified Diff: experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfOutlineItemDictionary_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 side-by-side diff with in-line comments
Download patch
Index: experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfOutlineItemDictionary_autogen.cpp
diff --git a/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfOutlineItemDictionary_autogen.cpp b/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfOutlineItemDictionary_autogen.cpp
deleted file mode 100644
index 62a87a803a052ac6f35551f9cc407cd6c086af23..0000000000000000000000000000000000000000
--- a/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfOutlineItemDictionary_autogen.cpp
+++ /dev/null
@@ -1,187 +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 "SkPdfOutlineItemDictionary_autogen.h"
-#include "SkPdfNativeDoc.h"
-
-SkString SkPdfOutlineItemDictionary::Title(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Title", "");
- 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 SkPdfOutlineItemDictionary::has_Title() const {
- return get("Title", "") != NULL;
-}
-
-SkPdfDictionary* SkPdfOutlineItemDictionary::Parent(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Parent", "");
- 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 SkPdfOutlineItemDictionary::has_Parent() const {
- return get("Parent", "") != NULL;
-}
-
-SkPdfDictionary* SkPdfOutlineItemDictionary::Prev(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Prev", "");
- 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 SkPdfOutlineItemDictionary::has_Prev() const {
- return get("Prev", "") != NULL;
-}
-
-SkPdfDictionary* SkPdfOutlineItemDictionary::Next(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Next", "");
- 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 SkPdfOutlineItemDictionary::has_Next() const {
- return get("Next", "") != NULL;
-}
-
-SkPdfDictionary* SkPdfOutlineItemDictionary::First(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("First", "");
- 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 SkPdfOutlineItemDictionary::has_First() const {
- return get("First", "") != NULL;
-}
-
-SkPdfDictionary* SkPdfOutlineItemDictionary::Last(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Last", "");
- 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 SkPdfOutlineItemDictionary::has_Last() const {
- return get("Last", "") != NULL;
-}
-
-int64_t SkPdfOutlineItemDictionary::Count(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Count", "");
- if (doc) {ret = doc->resolveReference(ret);}
- if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
- // TODO(edisonn): warn about missing default value for optional fields
- return 0;
-}
-
-bool SkPdfOutlineItemDictionary::has_Count() const {
- return get("Count", "") != NULL;
-}
-
-bool SkPdfOutlineItemDictionary::isDestAName(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Dest", "");
- if (doc) {ret = doc->resolveReference(ret);}
- return ret != NULL && ret->isName();
-}
-
-SkString SkPdfOutlineItemDictionary::getDestAsName(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Dest", "");
- 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 SkPdfOutlineItemDictionary::isDestAString(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Dest", "");
- if (doc) {ret = doc->resolveReference(ret);}
- return ret != NULL && ret->isAnyString();
-}
-
-SkString SkPdfOutlineItemDictionary::getDestAsString(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Dest", "");
- 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 SkPdfOutlineItemDictionary::isDestAArray(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Dest", "");
- if (doc) {ret = doc->resolveReference(ret);}
- return ret != NULL && ret->isArray();
-}
-
-SkPdfArray* SkPdfOutlineItemDictionary::getDestAsArray(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("Dest", "");
- 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 SkPdfOutlineItemDictionary::has_Dest() const {
- return get("Dest", "") != NULL;
-}
-
-SkPdfDictionary* SkPdfOutlineItemDictionary::A(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("A", "");
- 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 SkPdfOutlineItemDictionary::has_A() const {
- return get("A", "") != NULL;
-}
-
-SkPdfDictionary* SkPdfOutlineItemDictionary::SE(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("SE", "");
- 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 SkPdfOutlineItemDictionary::has_SE() const {
- return get("SE", "") != NULL;
-}
-
-SkPdfArray* SkPdfOutlineItemDictionary::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 default value for optional fields
- return NULL;
-}
-
-bool SkPdfOutlineItemDictionary::has_C() const {
- return get("C", "") != NULL;
-}
-
-int64_t SkPdfOutlineItemDictionary::F(SkPdfNativeDoc* doc) {
- SkPdfNativeObject* ret = get("F", "");
- if (doc) {ret = doc->resolveReference(ret);}
- if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
- // TODO(edisonn): warn about missing default value for optional fields
- return 0;
-}
-
-bool SkPdfOutlineItemDictionary::has_F() const {
- return get("F", "") != NULL;
-}

Powered by Google App Engine
This is Rietveld 408576698