diff options
Diffstat (limited to 'fpdfsdk/javascript/app.h')
-rw-r--r-- | fpdfsdk/javascript/app.h | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/fpdfsdk/javascript/app.h b/fpdfsdk/javascript/app.h index 41190ca0d7..36d2a84bdd 100644 --- a/fpdfsdk/javascript/app.h +++ b/fpdfsdk/javascript/app.h @@ -35,15 +35,11 @@ class CJS_TimerObj : 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 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[]; + + static void DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); }; class app : public CJS_EmbedObj { @@ -155,15 +151,15 @@ class CJS_App : 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 JSPropertySpec PropertySpecs[]; + 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 DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType); static void DefineProps(CFXJS_Engine* pEngine); static void DefineMethods(CFXJS_Engine* pEngine); - static JSPropertySpec PropertySpecs[]; - static JSMethodSpec MethodSpecs[]; JS_STATIC_PROP(activeDocs, active_docs, app); JS_STATIC_PROP(calculate, calculate, app); |