diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-02-08 21:01:01 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-08 21:01:01 +0000 |
commit | 3645652fb6cad1f94c9647f033a8e300bc37d521 (patch) | |
tree | 136dd8524455efdc4bbc32eed7914d3a3b5376e0 /fxjs/xfa/cjx_container.cpp | |
parent | 3c62d20a385d31315a392206de53c9fe72a08db1 (diff) | |
download | pdfium-3645652fb6cad1f94c9647f033a8e300bc37d521.tar.xz |
Move XFA-specific methods out of CJS_V8.
These belong more properly in CFXJS_Engine, and a small amount of
casting is required to get to the sub-class.
Change-Id: Id954d182b7a7d51fe0a522c04a50a1b362746c72
Reviewed-on: https://pdfium-review.googlesource.com/26050
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/xfa/cjx_container.cpp')
-rw-r--r-- | fxjs/xfa/cjx_container.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/xfa/cjx_container.cpp b/fxjs/xfa/cjx_container.cpp index cf0aca0cbb..b7577da204 100644 --- a/fxjs/xfa/cjx_container.cpp +++ b/fxjs/xfa/cjx_container.cpp @@ -34,7 +34,7 @@ CJS_Return CJX_Container::getDeltas( CJS_V8* runtime, const std::vector<v8::Local<v8::Value>>& params) { CXFA_ArrayNodeList* pFormNodes = new CXFA_ArrayNodeList(GetDocument()); - return CJS_Return(runtime->NewXFAObject( + return CJS_Return(static_cast<CFXJSE_Engine*>(runtime)->NewXFAObject( pFormNodes, GetDocument()->GetScriptContext()->GetJseNormalClass()->GetTemplate())); } |