diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-26 15:08:07 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-26 19:32:36 +0000 |
commit | 15776cf22182e74d8546849780ec0cf61b96ca95 (patch) | |
tree | 138efedf0a35f1d169e5634fb459ed88207baca4 /fpdfsdk/javascript/app.cpp | |
parent | d808dfd5ad8c4eae1f2ea58b9b54a7d4e45a649e (diff) | |
download | pdfium-15776cf22182e74d8546849780ec0cf61b96ca95.tar.xz |
Remove g_pClassName
This CL removes the g_pClassName static member and uses the string
directly where needed.
Change-Id: I47f61442ced2ee1d6a607fb1a7d9bcaf000b8ee2
Reviewed-on: https://pdfium-review.googlesource.com/16931
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/app.cpp')
-rw-r--r-- | fpdfsdk/javascript/app.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/fpdfsdk/javascript/app.cpp b/fpdfsdk/javascript/app.cpp index 0b331a8b1b..ceafb8fdd8 100644 --- a/fpdfsdk/javascript/app.cpp +++ b/fpdfsdk/javascript/app.cpp @@ -142,12 +142,11 @@ GlobalTimer::TimerMap* GlobalTimer::GetGlobalTimerMap() { return s_TimerMap; } -const char* CJS_TimerObj::g_pClassName = "TimerObj"; int CJS_TimerObj::g_nObjDefnID = -1; void CJS_TimerObj::DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType) { - g_nObjDefnID = pEngine->DefineObj(CJS_TimerObj::g_pClassName, eObjType, + g_nObjDefnID = pEngine->DefineObj("TimerObj", eObjType, JSConstructor<CJS_TimerObj, TimerObj>, JSDestructor<CJS_TimerObj>); } @@ -211,13 +210,11 @@ JSMethodSpec CJS_App::MethodSpecs[] = {{"alert", alert_static}, {"setTimeOut", setTimeOut_static}, {0, 0}}; -const char* CJS_App::g_pClassName = "app"; int CJS_App::g_nObjDefnID = -1; void CJS_App::DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType) { - g_nObjDefnID = - pEngine->DefineObj(CJS_App::g_pClassName, eObjType, - JSConstructor<CJS_App, app>, JSDestructor<CJS_App>); + g_nObjDefnID = pEngine->DefineObj( + "app", eObjType, JSConstructor<CJS_App, app>, JSDestructor<CJS_App>); DefineProps(pEngine, g_nObjDefnID, PropertySpecs); DefineMethods(pEngine, g_nObjDefnID, MethodSpecs); } |