diff options
Diffstat (limited to 'fpdfsdk/javascript/console.h')
-rw-r--r-- | fpdfsdk/javascript/console.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/fpdfsdk/javascript/console.h b/fpdfsdk/javascript/console.h index 4ed66c1c05..07ee292cd4 100644 --- a/fpdfsdk/javascript/console.h +++ b/fpdfsdk/javascript/console.h @@ -32,7 +32,17 @@ class CJS_Console : public CJS_Object { explicit CJS_Console(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} ~CJS_Console() override {} - DECLARE_JS_CLASS(); + 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 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 DefineMethods(CFXJS_Engine* pEngine); + static JSPropertySpec PropertySpecs[]; + static JSMethodSpec MethodSpecs[]; JS_STATIC_METHOD(clear, console); JS_STATIC_METHOD(hide, console); |