| Index: experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.h
|
| ===================================================================
|
| --- experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.h (revision 9765)
|
| +++ experimental/PdfViewer/autogen/SkPdfFormFieldActionsDictionary_autogen.h (working copy)
|
| @@ -533,13 +533,7 @@
|
| return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "K", "", NULL));
|
| }
|
|
|
| - SkPdfDictionary* K() const {
|
| - SkPdfDictionary* ret;
|
| - if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "K", "", &ret)) return ret;
|
| - // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| - return NULL;
|
| - }
|
| -
|
| + SkPdfDictionary* K() const;
|
| /** (Optional; PDF 1.3) A JavaScript action to be performed before the field is formatted
|
| * to display its current value. This allows the field's value to be modified before format-
|
| * ting.
|
| @@ -548,13 +542,7 @@
|
| return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", NULL));
|
| }
|
|
|
| - SkPdfDictionary* 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* F() const;
|
| /** (Optional; PDF 1.3) A JavaScript action to be performed when the field's value is
|
| * changed. This allows the new value to be checked for validity. (The name V stands for
|
| * "validate.")
|
| @@ -563,13 +551,7 @@
|
| return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "V", "", NULL));
|
| }
|
|
|
| - SkPdfDictionary* V() const {
|
| - SkPdfDictionary* ret;
|
| - if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "V", "", &ret)) return ret;
|
| - // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| - return NULL;
|
| - }
|
| -
|
| + SkPdfDictionary* V() const;
|
| /** (Optional; PDF 1.3) A JavaScript action to be performed in order to recalculate the
|
| * value of this field when that of another field changes. (The name C stands for
|
| * "calculate.") The order in which the document's fields are recalculated is defined by the
|
| @@ -580,13 +562,7 @@
|
| return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "C", "", NULL));
|
| }
|
|
|
| - SkPdfDictionary* C() const {
|
| - SkPdfDictionary* ret;
|
| - if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "C", "", &ret)) return ret;
|
| - // TODO(edisonn): warn about missing required field, assert for known good pdfs
|
| - return NULL;
|
| - }
|
| -
|
| + SkPdfDictionary* C() const;
|
| };
|
|
|
| #endif // __DEFINED__SkPdfFormFieldActionsDictionary
|
|
|