OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h" | 7 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h" |
8 | 8 |
9 #include "core/fxcrt/include/fx_basic.h" | 9 #include "core/fxcrt/include/fx_basic.h" |
10 #include "xfa/fxfa/fm2js/xfa_fm2jscontext.h" | 10 #include "xfa/fxfa/fm2js/xfa_fm2jscontext.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 } | 37 } |
38 program.TranslateProgram(wsJavascript); | 38 program.TranslateProgram(wsJavascript); |
39 return 0; | 39 return 0; |
40 } | 40 } |
41 | 41 |
42 XFA_HFM2JSCONTEXT XFA_FM2JS_ContextCreate() { | 42 XFA_HFM2JSCONTEXT XFA_FM2JS_ContextCreate() { |
43 return reinterpret_cast<XFA_HFM2JSCONTEXT>(new CXFA_FM2JSContext); | 43 return reinterpret_cast<XFA_HFM2JSCONTEXT>(new CXFA_FM2JSContext); |
44 } | 44 } |
45 | 45 |
46 void XFA_FM2JS_ContextInitialize(XFA_HFM2JSCONTEXT hFM2JSContext, | 46 void XFA_FM2JS_ContextInitialize(XFA_HFM2JSCONTEXT hFM2JSContext, |
47 v8::Isolate* pScriptRuntime, | 47 v8::Isolate* pScriptIsolate, |
48 FXJSE_HCONTEXT hScriptContext, | 48 CFXJSE_Context* pScriptContext, |
49 CXFA_Document* pDocument) { | 49 CXFA_Document* pDocument) { |
50 CXFA_FM2JSContext* pContext = | 50 CXFA_FM2JSContext* pContext = |
51 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); | 51 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); |
52 pContext->Initialize(pScriptRuntime, hScriptContext, pDocument); | 52 pContext->Initialize(pScriptIsolate, pScriptContext, pDocument); |
53 } | 53 } |
54 | 54 |
55 void XFA_FM2JS_GlobalPropertyGetter(XFA_HFM2JSCONTEXT hFM2JSContext, | 55 void XFA_FM2JS_GlobalPropertyGetter(XFA_HFM2JSCONTEXT hFM2JSContext, |
56 FXJSE_HVALUE hValue) { | 56 FXJSE_HVALUE hValue) { |
57 CXFA_FM2JSContext* pContext = | 57 CXFA_FM2JSContext* pContext = |
58 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); | 58 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); |
59 pContext->GlobalPropertyGetter(hValue); | 59 pContext->GlobalPropertyGetter(hValue); |
60 } | 60 } |
61 | 61 |
62 void XFA_FM2JS_ContextRelease(XFA_HFM2JSCONTEXT hFM2JSContext) { | 62 void XFA_FM2JS_ContextRelease(XFA_HFM2JSCONTEXT hFM2JSContext) { |
63 delete reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); | 63 delete reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext); |
64 } | 64 } |
65 #ifdef __cplusplus | 65 #ifdef __cplusplus |
66 } | 66 } |
67 #endif | 67 #endif |
OLD | NEW |