diff options
Diffstat (limited to 'fxjs/JS_Define.h')
-rw-r--r-- | fxjs/JS_Define.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fxjs/JS_Define.h b/fxjs/JS_Define.h index 1c2410f18f..540746afd5 100644 --- a/fxjs/JS_Define.h +++ b/fxjs/JS_Define.h @@ -48,10 +48,9 @@ std::vector<v8::Local<v8::Value>> ExpandKeywordParams( // Rich JS classes provide constants, methods, properties, and the ability // to construct native object state. -template <class T, class A> +template <class T> static void JSConstructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj) { auto pObj = pdfium::MakeUnique<T>(obj); - pObj->SetEmbedObject(pdfium::MakeUnique<A>(pObj.get())); pObj->InitInstance(static_cast<CJS_Runtime*>(pEngine)); pEngine->SetObjectPrivate(obj, std::move(pObj)); } |