summaryrefslogtreecommitdiff
path: root/xfa/fxfa/fm2js/xfa_fm2jsapi.cpp
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-05-31 11:54:01 -0700
committerCommit bot <commit-bot@chromium.org>2016-05-31 11:54:02 -0700
commit48d91dd174933b4881fb500b76fb2e3ecbc7f548 (patch)
tree2877c71ea9a22ed34b2addff4590075b5f38b5cf /xfa/fxfa/fm2js/xfa_fm2jsapi.cpp
parent86fad999ba59b1f8780582cc683b008880aab42e (diff)
downloadpdfium-48d91dd174933b4881fb500b76fb2e3ecbc7f548.tar.xz
xfa_fm2jscontext formatting and cleanup - pt I
Review-Url: https://codereview.chromium.org/2025723002
Diffstat (limited to 'xfa/fxfa/fm2js/xfa_fm2jsapi.cpp')
-rw-r--r--xfa/fxfa/fm2js/xfa_fm2jsapi.cpp16
1 files changed, 5 insertions, 11 deletions
diff --git a/xfa/fxfa/fm2js/xfa_fm2jsapi.cpp b/xfa/fxfa/fm2js/xfa_fm2jsapi.cpp
index 00c4edf447..826739a9e7 100644
--- a/xfa/fxfa/fm2js/xfa_fm2jsapi.cpp
+++ b/xfa/fxfa/fm2js/xfa_fm2jsapi.cpp
@@ -39,17 +39,11 @@ int32_t XFA_FM2JS_Translate(const CFX_WideStringC& wsFormcalc,
return 0;
}
-XFA_HFM2JSCONTEXT XFA_FM2JS_ContextCreate() {
- return reinterpret_cast<XFA_HFM2JSCONTEXT>(new CXFA_FM2JSContext);
-}
-
-void XFA_FM2JS_ContextInitialize(XFA_HFM2JSCONTEXT hFM2JSContext,
- v8::Isolate* pScriptIsolate,
- CFXJSE_Context* pScriptContext,
- CXFA_Document* pDocument) {
- CXFA_FM2JSContext* pContext =
- reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext);
- pContext->Initialize(pScriptIsolate, pScriptContext, pDocument);
+XFA_HFM2JSCONTEXT XFA_FM2JS_ContextCreate(v8::Isolate* pScriptIsolate,
+ CFXJSE_Context* pScriptContext,
+ CXFA_Document* pDocument) {
+ return reinterpret_cast<XFA_HFM2JSCONTEXT>(
+ new CXFA_FM2JSContext(pScriptIsolate, pScriptContext, pDocument));
}
void XFA_FM2JS_GlobalPropertyGetter(XFA_HFM2JSCONTEXT hFM2JSContext,