summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/cjs_zoomtype.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_zoomtype.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_zoomtype.cpp')
-rw-r--r--fpdfsdk/javascript/cjs_zoomtype.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/fpdfsdk/javascript/cjs_zoomtype.cpp b/fpdfsdk/javascript/cjs_zoomtype.cpp
index 88707765eb..d138381a2e 100644
--- a/fpdfsdk/javascript/cjs_zoomtype.cpp
+++ b/fpdfsdk/javascript/cjs_zoomtype.cpp
@@ -16,12 +16,10 @@ JSConstSpec CJS_Zoomtype::ConstSpecs[] = {
{"refW", JSConstSpec::String, 0, "ReflowWidth"},
{0, JSConstSpec::Number, 0, 0}};
-const char* CJS_Zoomtype::g_pClassName = "zoomtype";
int CJS_Zoomtype::g_nObjDefnID = -1;
void CJS_Zoomtype::DefineJSObjects(CFXJS_Engine* pEngine,
FXJSOBJTYPE eObjType) {
- g_nObjDefnID = pEngine->DefineObj(CJS_Zoomtype::g_pClassName, eObjType,
- nullptr, nullptr);
+ g_nObjDefnID = pEngine->DefineObj("zoomtype", eObjType, nullptr, nullptr);
DefineConsts(pEngine, g_nObjDefnID, ConstSpecs);
}