blob: b2b83f00de5ce032ec01c81d276ddea58d14c478 [file] [log] [blame]
edisonn@google.com131d4ee2013-06-26 17:48:12 +00001#include "SkPdfNamedActionsDictionary_autogen.h"
2
3std::string SkPdfNamedActionsDictionary::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 SkPdfNamedActionsDictionary::N() const {
11 std::string ret;
12 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", &ret)) return ret;
13 // TODO(edisonn): warn about missing required field, assert for known good pdfs
14 return "";
15}
16