| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 46 void XFA_FM2JS_ContextInitialize(XFA_HFM2JSCONTEXT hFM2JSContext, | 46 void XFA_FM2JS_ContextInitialize(XFA_HFM2JSCONTEXT hFM2JSContext, | 
| 47                                  v8::Isolate* pScriptIsolate, | 47                                  v8::Isolate* pScriptIsolate, | 
| 48                                  CFXJSE_Context* pScriptContext, | 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(pScriptIsolate, pScriptContext, 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                                     CFXJSE_Value* pValue) { | 
| 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(pValue); | 
| 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 | 
|---|