summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/console.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-26 12:36:18 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-10-26 19:02:37 +0000
commit977c2a048e02dd3a9563be0c2c6ee62435e134c1 (patch)
treecba76582cf07dcdf18691a5ba9a4d3c7e949256d /fpdfsdk/javascript/console.h
parent89d26c8ccf336b4f46da2de140313918f2a4ffdf (diff)
downloadpdfium-977c2a048e02dd3a9563be0c2c6ee62435e134c1.tar.xz
Remove methods for empty const/method/property arrays
This CL cleans up the methods and arrays for constants, methods and property definitions which are empty. Change-Id: I4a4d85cc139075de77d84a40182bd00341c31818 Reviewed-on: https://pdfium-review.googlesource.com/16910 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/console.h')
-rw-r--r--fpdfsdk/javascript/console.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/fpdfsdk/javascript/console.h b/fpdfsdk/javascript/console.h
index 07ee292cd4..1d85765648 100644
--- a/fpdfsdk/javascript/console.h
+++ b/fpdfsdk/javascript/console.h
@@ -34,15 +34,13 @@ class CJS_Console : public CJS_Object {
static const char* g_pClassName;
static int g_nObjDefnID;
- static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType);
- static JSConstSpec ConstSpecs[];
- static void DefineConsts(CFXJS_Engine* pEngine);
+ static JSMethodSpec MethodSpecs[];
+
static void JSConstructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj);
static void JSDestructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj);
- static void DefineProps(CFXJS_Engine* pEngine);
+
+ static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType);
static void DefineMethods(CFXJS_Engine* pEngine);
- static JSPropertySpec PropertySpecs[];
- static JSMethodSpec MethodSpecs[];
JS_STATIC_METHOD(clear, console);
JS_STATIC_METHOD(hide, console);