summaryrefslogtreecommitdiff
path: root/fxjs/cjs_highlight.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-10-29 20:55:28 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-29 20:55:28 +0000
commit007daeb3fbd9ace2c1cbdf85d0fa98ebfa00163c (patch)
treeb27770ad22c77230105bfb2dec93c72e2ab5fc57 /fxjs/cjs_highlight.cpp
parent2a5c694ead001e072b2e243e79f17f296d18c898 (diff)
downloadpdfium-007daeb3fbd9ace2c1cbdf85d0fa98ebfa00163c.tar.xz
Remove ctors from CJS_ objects which cant be instantiated.
Because they only provide constants. Change-Id: I79cdc78b4d0c1d6e8d6276b4ce7bb301755802c9 Reviewed-on: https://pdfium-review.googlesource.com/c/44791 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cjs_highlight.cpp')
-rw-r--r--fxjs/cjs_highlight.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/fxjs/cjs_highlight.cpp b/fxjs/cjs_highlight.cpp
index 5c95281875..4ada397cc3 100644
--- a/fxjs/cjs_highlight.cpp
+++ b/fxjs/cjs_highlight.cpp
@@ -20,9 +20,3 @@ void CJS_Highlight::DefineJSObjects(CFXJS_Engine* pEngine) {
pEngine->DefineObj("highlight", FXJSOBJTYPE_STATIC, nullptr, nullptr);
DefineConsts(pEngine, ObjDefnID, ConstSpecs);
}
-
-CJS_Highlight::CJS_Highlight(v8::Local<v8::Object> pObject,
- CJS_Runtime* pRuntime)
- : CJS_Object(pObject, pRuntime) {}
-
-CJS_Highlight::~CJS_Highlight() = default;