| Index: experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.h
|
| ===================================================================
|
| --- experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.h (revision 9765)
|
| +++ experimental/PdfViewer/autogen/SkPdfNamedActionsDictionary_autogen.h (working copy)
|
| @@ -532,26 +532,14 @@
|
| return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", NULL));
|
| }
|
|
|
| - std::string 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 "";
|
| - }
|
| -
|
| + std::string S() const;
|
| /** (Required) The name of the action to be performed (see Table 8.45).
|
| **/
|
| bool has_N() const {
|
| return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", NULL));
|
| }
|
|
|
| - std::string N() const {
|
| - std::string ret;
|
| - if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", &ret)) return ret;
|
| - // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| - return "";
|
| - }
|
| -
|
| + std::string N() const;
|
| };
|
|
|
| #endif // __DEFINED__SkPdfNamedActionsDictionary
|
|
|