| Index: fpdfsdk/javascript/Document.h
|
| diff --git a/fpdfsdk/javascript/Document.h b/fpdfsdk/javascript/Document.h
|
| index ae2d6c1afec788334db63d8eaa7a5e256007676e..873f70e327c3c70b12000cbc17e68cb4a5ffae7a 100644
|
| --- a/fpdfsdk/javascript/Document.h
|
| +++ b/fpdfsdk/javascript/Document.h
|
| @@ -207,6 +207,10 @@ class Document : public CJS_EmbedObj {
|
| const std::vector<CJS_Value>& params,
|
| CJS_Value& vRet,
|
| CFX_WideString& sError);
|
| + FX_BOOL gotoNamedDest(IJS_Context* cc,
|
| + const std::vector<CJS_Value>& params,
|
| + CJS_Value& vRet,
|
| + CFX_WideString& sError);
|
| FX_BOOL importAnFDF(IJS_Context* cc,
|
| const std::vector<CJS_Value>& params,
|
| CJS_Value& vRet,
|
| @@ -356,6 +360,7 @@ class CJS_Document : public CJS_Object {
|
| JS_STATIC_METHOD(getPageNumWords, Document);
|
| JS_STATIC_METHOD(getPrintParams, Document);
|
| JS_STATIC_METHOD(getURL, Document);
|
| + JS_STATIC_METHOD(gotoNamedDest, Document);
|
| JS_STATIC_METHOD(importAnFDF, Document);
|
| JS_STATIC_METHOD(importAnXFDF, Document);
|
| JS_STATIC_METHOD(importTextData, Document);
|
|
|