From 5b3d0208723f21c50b9922bdc500c9d78c359a25 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 6 Oct 2015 07:50:47 -0700 Subject: Make the vast majority of JS headers private to src/javascript. The fpdfsdk/include/javascript/IJavascript.h is the sole API. This required moving a creaton method to it from JS_Runtime. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1389783002 . --- fpdfsdk/include/javascript/console.h | 49 ------------------------------------ 1 file changed, 49 deletions(-) delete mode 100644 fpdfsdk/include/javascript/console.h (limited to 'fpdfsdk/include/javascript/console.h') diff --git a/fpdfsdk/include/javascript/console.h b/fpdfsdk/include/javascript/console.h deleted file mode 100644 index 1571d109f1..0000000000 --- a/fpdfsdk/include/javascript/console.h +++ /dev/null @@ -1,49 +0,0 @@ -// Copyright 2014 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#ifndef FPDFSDK_INCLUDE_JAVASCRIPT_CONSOLE_H_ -#define FPDFSDK_INCLUDE_JAVASCRIPT_CONSOLE_H_ - -#include "JS_Define.h" - -class console : public CJS_EmbedObj { - public: - console(CJS_Object* pJSObject); - ~console() override; - - public: - FX_BOOL clear(IFXJS_Context* cc, - const CJS_Parameters& params, - CJS_Value& vRet, - CFX_WideString& sError); - FX_BOOL hide(IFXJS_Context* cc, - const CJS_Parameters& params, - CJS_Value& vRet, - CFX_WideString& sError); - FX_BOOL println(IFXJS_Context* cc, - const CJS_Parameters& params, - CJS_Value& vRet, - CFX_WideString& sError); - FX_BOOL show(IFXJS_Context* cc, - const CJS_Parameters& params, - CJS_Value& vRet, - CFX_WideString& sError); -}; - -class CJS_Console : public CJS_Object { - public: - CJS_Console(v8::Local pObject) : CJS_Object(pObject) {} - ~CJS_Console() override {} - - DECLARE_JS_CLASS(CJS_Console); - - JS_STATIC_METHOD(clear, console); - JS_STATIC_METHOD(hide, console); - JS_STATIC_METHOD(println, console); - JS_STATIC_METHOD(show, console); -}; - -#endif // FPDFSDK_INCLUDE_JAVASCRIPT_CONSOLE_H_ -- cgit v1.2.3