| Index: experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.cpp
|
| ===================================================================
|
| --- experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.cpp (revision 0)
|
| +++ experimental/PdfViewer/autogen/SkPdfThreadActionDictionary_autogen.cpp (revision 0)
|
| @@ -0,0 +1,51 @@
|
| +#include "SkPdfThreadActionDictionary_autogen.h"
|
| +
|
| +std::string SkPdfThreadActionDictionary::S() const {
|
| + std::string ret;
|
| + if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
|
| + // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| + return "";
|
| +}
|
| +
|
| +SkPdfFileSpec SkPdfThreadActionDictionary::F() const {
|
| + SkPdfFileSpec ret;
|
| + if (FileSpecFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &ret)) return ret;
|
| + // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| + return SkPdfFileSpec();
|
| +}
|
| +
|
| +SkPdfDictionary* SkPdfThreadActionDictionary::getDAsDictionary() const {
|
| + SkPdfDictionary* ret = NULL;
|
| + if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "", &ret)) return ret;
|
| + // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| + return NULL;
|
| +}
|
| +
|
| +long SkPdfThreadActionDictionary::getDAsInteger() const {
|
| + long ret = 0;
|
| + if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "", &ret)) return ret;
|
| + // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| + return 0;
|
| +}
|
| +
|
| +std::string SkPdfThreadActionDictionary::getDAsString() const {
|
| + std::string ret = "";
|
| + if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "", &ret)) return ret;
|
| + // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| + return "";
|
| +}
|
| +
|
| +SkPdfDictionary* SkPdfThreadActionDictionary::getBAsDictionary() const {
|
| + SkPdfDictionary* ret = NULL;
|
| + if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "B", "", &ret)) return ret;
|
| + // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| + return NULL;
|
| +}
|
| +
|
| +long SkPdfThreadActionDictionary::getBAsInteger() const {
|
| + long ret = 0;
|
| + if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "B", "", &ret)) return ret;
|
| + // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| + return 0;
|
| +}
|
| +
|
|
|