John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 1 | // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
| 7 | #include "../../include/javascript/JavaScript.h" |
| 8 | #include "../../include/javascript/IJavaScript.h" |
| 9 | #include "../../include/javascript/JS_Define.h" |
| 10 | #include "../../include/javascript/JS_Object.h" |
| 11 | #include "../../include/javascript/JS_Value.h" |
| 12 | #include "../../include/javascript/console.h" |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 13 | #include "../../include/javascript/JS_EventHandler.h" |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 14 | #include "../../include/javascript/JS_Context.h" |
| 15 | |
| 16 | /* ------------------------ console ------------------------ */ |
| 17 | |
| 18 | BEGIN_JS_STATIC_CONST(CJS_Console) |
| 19 | END_JS_STATIC_CONST() |
| 20 | |
| 21 | BEGIN_JS_STATIC_PROP(CJS_Console) |
| 22 | END_JS_STATIC_PROP() |
| 23 | |
| 24 | BEGIN_JS_STATIC_METHOD(CJS_Console) |
Tom Sepez | e5350ef | 2015-04-23 18:14:26 -0700 | [diff] [blame^] | 25 | JS_STATIC_METHOD_ENTRY(clear) |
| 26 | JS_STATIC_METHOD_ENTRY(hide) |
| 27 | JS_STATIC_METHOD_ENTRY(println) |
| 28 | JS_STATIC_METHOD_ENTRY(show) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 29 | END_JS_STATIC_METHOD() |
| 30 | |
| 31 | IMPLEMENT_JS_CLASS(CJS_Console,console) |
| 32 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 33 | console::console(CJS_Object* pJSObject): CJS_EmbedObj(pJSObject) |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | console::~console() |
| 38 | { |
| 39 | } |
| 40 | |
Tom Sepez | 2f3dfef | 2015-03-02 15:35:26 -0800 | [diff] [blame] | 41 | FX_BOOL console::clear(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 42 | { |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 43 | return TRUE; |
| 44 | } |
| 45 | |
Tom Sepez | 2f3dfef | 2015-03-02 15:35:26 -0800 | [diff] [blame] | 46 | FX_BOOL console::hide(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 47 | { |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 48 | return TRUE; |
| 49 | } |
| 50 | |
Tom Sepez | 2f3dfef | 2015-03-02 15:35:26 -0800 | [diff] [blame] | 51 | FX_BOOL console::println(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 52 | { |
| 53 | if (params.size() < 1) |
| 54 | { |
| 55 | return FALSE; |
| 56 | } |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 57 | return TRUE; |
| 58 | } |
| 59 | |
Tom Sepez | 2f3dfef | 2015-03-02 15:35:26 -0800 | [diff] [blame] | 60 | FX_BOOL console::show(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 61 | { |
| 62 | return TRUE; |
| 63 | } |
| 64 | |
| 65 | |
| 66 | |