blob: 2b3fbc3bd0c4faf7c35477403ffeda4fb1494646 [file] [log] [blame]
edisonn@google.com131d4ee2013-06-26 17:48:12 +00001#include "SkPdfGoToActionDictionary_autogen.h"
2
3std::string SkPdfGoToActionDictionary::S() const {
4 std::string ret;
5 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
6 // TODO(edisonn): warn about missing required field, assert for known good pdfs
7 return "";
8}
9
10std::string SkPdfGoToActionDictionary::getDAsName() const {
11 std::string ret = "";
12 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "", &ret)) return ret;
13 // TODO(edisonn): warn about missing required field, assert for known good pdfs
14 return "";
15}
16
17std::string SkPdfGoToActionDictionary::getDAsString() const {
18 std::string ret = "";
19 if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "", &ret)) return ret;
20 // TODO(edisonn): warn about missing required field, assert for known good pdfs
21 return "";
22}
23
24SkPdfArray* SkPdfGoToActionDictionary::getDAsArray() const {
25 SkPdfArray* ret = NULL;
26 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "", &ret)) return ret;
27 // TODO(edisonn): warn about missing required field, assert for known good pdfs
28 return NULL;
29}
edisonn@google.com6e49c342013-06-27 20:03:43 +000030