aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp
diff options
context:
space:
mode:
authorGravatar edisonn@google.com <edisonn@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-06-28 22:01:06 +0000
committerGravatar edisonn@google.com <edisonn@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-06-28 22:01:06 +0000
commit5d41b36dd5bf6832c0fe02645cb3f911b7fa7c4b (patch)
treefc5e53647020d784e498c033b3bf45e24f1e6006 /experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp
parent1e34b34a6caf16318945b6e933e5017e9ee89d7c (diff)
refactor folders to make prepare for native pdf parser
Review URL: https://codereview.chromium.org/18179007 git-svn-id: http://skia.googlecode.com/svn/trunk@9825 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp')
-rw-r--r--experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp b/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp
deleted file mode 100644
index 656c1f6fcd..0000000000
--- a/experimental/PdfViewer/autogen/SkPdfThreadDictionary_autogen.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "SkPdfThreadDictionary_autogen.h"
-
-std::string SkPdfThreadDictionary::Type() const {
- std::string ret;
- if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
- // TODO(edisonn): warn about missing required field, assert for known good pdfs
- return "";
-}
-
-SkPdfDictionary* SkPdfThreadDictionary::F() const {
- SkPdfDictionary* ret;
- if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &ret)) return ret;
- // TODO(edisonn): warn about missing required field, assert for known good pdfs
- return NULL;
-}
-
-SkPdfDictionary* SkPdfThreadDictionary::I() const {
- SkPdfDictionary* ret;
- if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "I", "", &ret)) return ret;
- // TODO(edisonn): warn about missing required field, assert for known good pdfs
- return NULL;
-}