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 // FXJS_V8 is a layer that makes it easier to define native objects in V8, but | 7 // FXJS_V8 is a layer that makes it easier to define native objects in V8, but |
8 // has no knowledge of PDF-specific native objects. It could in theory be used | 8 // has no knowledge of PDF-specific native objects. It could in theory be used |
9 // to implement other sets of native objects. | 9 // to implement other sets of native objects. |
10 | 10 |
11 // PDFium code should include this file rather than including V8 headers | 11 // PDFium code should include this file rather than including V8 headers |
12 // directly. | 12 // directly. |
13 | 13 |
14 #ifndef FPDFSDK_INCLUDE_JSAPI_FXJS_V8_H_ | 14 #ifndef FPDFSDK_INCLUDE_JSAPI_FXJS_V8_H_ |
15 #define FPDFSDK_INCLUDE_JSAPI_FXJS_V8_H_ | 15 #define FPDFSDK_INCLUDE_JSAPI_FXJS_V8_H_ |
16 | 16 |
17 #include <v8.h> | 17 #include <v8.h> |
18 #include "../../../core/include/fxcrt/fx_basic.h" | 18 |
| 19 #include "core/include/fxcrt/fx_basic.h" |
19 | 20 |
20 // FXJS_V8 places no restrictions on these two classes; it merely passes them | 21 // FXJS_V8 places no restrictions on these two classes; it merely passes them |
21 // on to caller-provided methods. | 22 // on to caller-provided methods. |
22 class IJS_Context; // A description of the event that caused JS execution. | 23 class IJS_Context; // A description of the event that caused JS execution. |
23 class IJS_Runtime; // A native runtime, typically owns the v8::Context. | 24 class IJS_Runtime; // A native runtime, typically owns the v8::Context. |
24 | 25 |
25 enum FXJSOBJTYPE { | 26 enum FXJSOBJTYPE { |
26 FXJSOBJTYPE_DYNAMIC = 0, // Created by native method and returned to JS. | 27 FXJSOBJTYPE_DYNAMIC = 0, // Created by native method and returned to JS. |
27 FXJSOBJTYPE_STATIC, // Created by init and hung off of global object. | 28 FXJSOBJTYPE_STATIC, // Created by init and hung off of global object. |
28 FXJSOBJTYPE_GLOBAL, // The global object itself (may only appear once). | 29 FXJSOBJTYPE_GLOBAL, // The global object itself (may only appear once). |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue); | 213 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue); |
213 v8::Local<v8::Object> FXJS_ToObject(v8::Isolate* pIsolate, | 214 v8::Local<v8::Object> FXJS_ToObject(v8::Isolate* pIsolate, |
214 v8::Local<v8::Value> pValue); | 215 v8::Local<v8::Value> pValue); |
215 CFX_WideString FXJS_ToString(v8::Isolate* pIsolate, | 216 CFX_WideString FXJS_ToString(v8::Isolate* pIsolate, |
216 v8::Local<v8::Value> pValue); | 217 v8::Local<v8::Value> pValue); |
217 v8::Local<v8::Array> FXJS_ToArray(v8::Isolate* pIsolate, | 218 v8::Local<v8::Array> FXJS_ToArray(v8::Isolate* pIsolate, |
218 v8::Local<v8::Value> pValue); | 219 v8::Local<v8::Value> pValue); |
219 void FXJS_ValueCopy(v8::Local<v8::Value>& pTo, v8::Local<v8::Value> pFrom); | 220 void FXJS_ValueCopy(v8::Local<v8::Value>& pTo, v8::Local<v8::Value> pFrom); |
220 | 221 |
221 #endif // FPDFSDK_INCLUDE_JSAPI_FXJS_V8_H_ | 222 #endif // FPDFSDK_INCLUDE_JSAPI_FXJS_V8_H_ |
OLD | NEW |