| 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 #ifndef XFA_FXJSE_CONTEXT_H_ | 7 #ifndef FXJSE_CONTEXT_H_ |
| 8 #define XFA_FXJSE_CONTEXT_H_ | 8 #define FXJSE_CONTEXT_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "core/fxcrt/include/fx_basic.h" | 13 #include "core/fxcrt/include/fx_basic.h" |
| 14 #include "fxjse/include/fxjse.h" |
| 14 #include "v8/include/v8.h" | 15 #include "v8/include/v8.h" |
| 15 #include "xfa/fxjse/include/fxjse.h" | |
| 16 | 16 |
| 17 class CFXJSE_Class; | 17 class CFXJSE_Class; |
| 18 class CFXJSE_Value; | 18 class CFXJSE_Value; |
| 19 struct FXJSE_CLASS_DESCRIPTOR; | 19 struct FXJSE_CLASS_DESCRIPTOR; |
| 20 | 20 |
| 21 class CFXJSE_Context { | 21 class CFXJSE_Context { |
| 22 public: | 22 public: |
| 23 static CFXJSE_Context* Create( | 23 static CFXJSE_Context* Create( |
| 24 v8::Isolate* pIsolate, | 24 v8::Isolate* pIsolate, |
| 25 const FXJSE_CLASS_DESCRIPTOR* lpGlobalClass = nullptr, | 25 const FXJSE_CLASS_DESCRIPTOR* lpGlobalClass = nullptr, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 53 v8::Local<v8::Object> FXJSE_GetGlobalObjectFromContext( | 53 v8::Local<v8::Object> FXJSE_GetGlobalObjectFromContext( |
| 54 const v8::Local<v8::Context>& hContext); | 54 const v8::Local<v8::Context>& hContext); |
| 55 | 55 |
| 56 void FXJSE_UpdateObjectBinding(v8::Local<v8::Object>& hObject, | 56 void FXJSE_UpdateObjectBinding(v8::Local<v8::Object>& hObject, |
| 57 CFXJSE_HostObject* lpNewBinding = nullptr); | 57 CFXJSE_HostObject* lpNewBinding = nullptr); |
| 58 | 58 |
| 59 CFXJSE_HostObject* FXJSE_RetrieveObjectBinding( | 59 CFXJSE_HostObject* FXJSE_RetrieveObjectBinding( |
| 60 const v8::Local<v8::Object>& hJSObject, | 60 const v8::Local<v8::Object>& hJSObject, |
| 61 CFXJSE_Class* lpClass = nullptr); | 61 CFXJSE_Class* lpClass = nullptr); |
| 62 | 62 |
| 63 #endif // XFA_FXJSE_CONTEXT_H_ | 63 #endif // FXJSE_CONTEXT_H_ |
| OLD | NEW |