summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/cjs_global.cpp
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-26 15:08:07 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-10-26 19:32:36 +0000
commit15776cf22182e74d8546849780ec0cf61b96ca95 (patch)
tree138efedf0a35f1d169e5634fb459ed88207baca4 /fpdfsdk/javascript/cjs_global.cpp
parentd808dfd5ad8c4eae1f2ea58b9b54a7d4e45a649e (diff)
downloadpdfium-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/cjs_global.cpp')
-rw-r--r--fpdfsdk/javascript/cjs_global.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/fpdfsdk/javascript/cjs_global.cpp b/fpdfsdk/javascript/cjs_global.cpp
index 1ec9bbf9ea..95782acccf 100644
--- a/fpdfsdk/javascript/cjs_global.cpp
+++ b/fpdfsdk/javascript/cjs_global.cpp
@@ -182,7 +182,6 @@ JSMethodSpec CJS_Global::MethodSpecs[] = {
{"setPersistent", setPersistent_static},
{0, 0}};
-const char* CJS_Global::g_pClassName = "global";
int CJS_Global::g_nObjDefnID = -1;
// static
@@ -232,8 +231,8 @@ void CJS_Global::DefineAllProperties(CFXJS_Engine* pEngine) {
void CJS_Global::DefineJSObjects(CFXJS_Engine* pEngine, FXJSOBJTYPE eObjType) {
g_nObjDefnID = pEngine->DefineObj(
- CJS_Global::g_pClassName, eObjType,
- JSConstructor<CJS_Global, JSGlobalAlternate>, JSDestructor<CJS_Global>);
+ "global", eObjType, JSConstructor<CJS_Global, JSGlobalAlternate>,
+ JSDestructor<CJS_Global>);
DefineConsts(pEngine, g_nObjDefnID, ConstSpecs);
DefineProps(pEngine, g_nObjDefnID, PropertySpecs);
DefineMethods(pEngine, g_nObjDefnID, MethodSpecs);