Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: xfa/fxfa/fm2js/xfa_fm2jsapi.cpp

Issue 2012253002: Remove FXJSE_HOBJECT and FXJSE_HVALUE for CFXJSE_Value* (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@fxjse_hclass
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/fm2js/xfa_fm2jsapi.h ('k') | xfa/fxfa/fm2js/xfa_fm2jscontext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « xfa/fxfa/fm2js/xfa_fm2jsapi.h ('k') | xfa/fxfa/fm2js/xfa_fm2jscontext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698