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#ifndef FPDFSDK_INCLUDE_JAVASCRIPT_CONSOLE_H_
8#define FPDFSDK_INCLUDE_JAVASCRIPT_CONSOLE_H_
9
10#include "JS_Define.h"
11
12class console : public CJS_EmbedObj
13{
14public:
15	console(CJS_Object* pJSObject);
16	virtual ~console(void);
17
18public:
19	FX_BOOL clear(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
20	FX_BOOL hide(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
21	FX_BOOL println(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
22	FX_BOOL show(IFXJS_Context* cc, const CJS_Parameters& params, CJS_Value& vRet, CFX_WideString& sError);
23};
24
25class CJS_Console : public CJS_Object
26{
27public:
28	CJS_Console(JSFXObject pObject) : CJS_Object(pObject) {};
29	virtual ~CJS_Console(void){};
30
31	DECLARE_JS_CLASS(CJS_Console);
32
33	JS_STATIC_METHOD(clear, console);
34	JS_STATIC_METHOD(hide, console);
35	JS_STATIC_METHOD(println, console);
36	JS_STATIC_METHOD(show, console);
37};
38
39#endif  // FPDFSDK_INCLUDE_JAVASCRIPT_CONSOLE_H_
40