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

Side by Side Diff: fpdfsdk/include/jsapi/fxjs_v8.h

Issue 1825953002: Move core/include/fxcrt to core/fxcrt/include. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 | « fpdfsdk/include/javascript/IJavaScript.h ('k') | fpdfsdk/include/pdfwindow/PWL_Edit.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 // 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-util.h> 17 #include <v8-util.h>
18 #include <v8.h> 18 #include <v8.h>
19 19
20 #include <vector> 20 #include <vector>
21 21
22 #include "core/include/fxcrt/fx_string.h" 22 #include "core/fxcrt/include/fx_string.h"
23 23
24 class CFXJS_ObjDefinition; 24 class CFXJS_ObjDefinition;
25 25
26 // FXJS_V8 places no restrictions on these two classes; it merely passes them 26 // FXJS_V8 places no restrictions on these two classes; it merely passes them
27 // on to caller-provided methods. 27 // on to caller-provided methods.
28 class IJS_Context; // A description of the event that caused JS execution. 28 class IJS_Context; // A description of the event that caused JS execution.
29 class IJS_Runtime; // A native runtime, typically owns the v8::Context. 29 class IJS_Runtime; // A native runtime, typically owns the v8::Context.
30 30
31 #ifdef PDF_ENABLE_XFA 31 #ifdef PDF_ENABLE_XFA
32 // FXJS_V8 places no interpreation on this calass; it merely passes it 32 // FXJS_V8 places no interpreation on this calass; it merely passes it
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue); 295 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue);
296 v8::Local<v8::Object> FXJS_ToObject(v8::Isolate* pIsolate, 296 v8::Local<v8::Object> FXJS_ToObject(v8::Isolate* pIsolate,
297 v8::Local<v8::Value> pValue); 297 v8::Local<v8::Value> pValue);
298 CFX_WideString FXJS_ToString(v8::Isolate* pIsolate, 298 CFX_WideString FXJS_ToString(v8::Isolate* pIsolate,
299 v8::Local<v8::Value> pValue); 299 v8::Local<v8::Value> pValue);
300 v8::Local<v8::Array> FXJS_ToArray(v8::Isolate* pIsolate, 300 v8::Local<v8::Array> FXJS_ToArray(v8::Isolate* pIsolate,
301 v8::Local<v8::Value> pValue); 301 v8::Local<v8::Value> pValue);
302 void FXJS_ValueCopy(v8::Local<v8::Value>& pTo, v8::Local<v8::Value> pFrom); 302 void FXJS_ValueCopy(v8::Local<v8::Value>& pTo, v8::Local<v8::Value> pFrom);
303 303
304 #endif // FPDFSDK_INCLUDE_JSAPI_FXJS_V8_H_ 304 #endif // FPDFSDK_INCLUDE_JSAPI_FXJS_V8_H_
OLDNEW
« no previous file with comments | « fpdfsdk/include/javascript/IJavaScript.h ('k') | fpdfsdk/include/pdfwindow/PWL_Edit.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698