aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfURLAliasDictionary_autogen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfURLAliasDictionary_autogen.cpp')
-rw-r--r--experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfURLAliasDictionary_autogen.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfURLAliasDictionary_autogen.cpp b/experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfURLAliasDictionary_autogen.cpp
new file mode 100644
index 0000000000..14f4b2dbd4
--- /dev/null
+++ b/experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfURLAliasDictionary_autogen.cpp
@@ -0,0 +1,15 @@
+#include "SkPdfURLAliasDictionary_autogen.h"
+
+std::string SkPdfURLAliasDictionary::U() const {
+ std::string ret;
+ if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "U", "", &ret)) return ret;
+ // TODO(edisonn): warn about missing required field, assert for known good pdfs
+ return "";
+}
+
+SkPdfArray* SkPdfURLAliasDictionary::C() const {
+ SkPdfArray* ret;
+ if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "C", "", &ret)) return ret;
+ // TODO(edisonn): warn about missing required field, assert for known good pdfs
+ return NULL;
+}