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 "console.h" | 7 #include "console.h" |
8 | 8 |
9 #include "../../include/javascript/IJavaScript.h" | 9 #include "JS_Context.h" |
10 #include "JS_Define.h" | 10 #include "JS_Define.h" |
| 11 #include "JS_EventHandler.h" |
11 #include "JS_Object.h" | 12 #include "JS_Object.h" |
12 #include "JS_Value.h" | 13 #include "JS_Value.h" |
13 #include "JS_EventHandler.h" | 14 #include "fpdfsdk/include/javascript/IJavaScript.h" |
14 #include "JS_Context.h" | |
15 | 15 |
16 /* ------------------------ console ------------------------ */ | 16 /* ------------------------ console ------------------------ */ |
17 | 17 |
18 BEGIN_JS_STATIC_CONST(CJS_Console) | 18 BEGIN_JS_STATIC_CONST(CJS_Console) |
19 END_JS_STATIC_CONST() | 19 END_JS_STATIC_CONST() |
20 | 20 |
21 BEGIN_JS_STATIC_PROP(CJS_Console) | 21 BEGIN_JS_STATIC_PROP(CJS_Console) |
22 END_JS_STATIC_PROP() | 22 END_JS_STATIC_PROP() |
23 | 23 |
24 BEGIN_JS_STATIC_METHOD(CJS_Console) | 24 BEGIN_JS_STATIC_METHOD(CJS_Console) |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 } | 57 } |
58 return TRUE; | 58 return TRUE; |
59 } | 59 } |
60 | 60 |
61 FX_BOOL console::show(IJS_Context* cc, | 61 FX_BOOL console::show(IJS_Context* cc, |
62 const std::vector<CJS_Value>& params, | 62 const std::vector<CJS_Value>& params, |
63 CJS_Value& vRet, | 63 CJS_Value& vRet, |
64 CFX_WideString& sError) { | 64 CFX_WideString& sError) { |
65 return TRUE; | 65 return TRUE; |
66 } | 66 } |
OLD | NEW |