summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/JS_Value.h
diff options
context:
space:
mode:
Diffstat (limited to 'fpdfsdk/javascript/JS_Value.h')
-rw-r--r--fpdfsdk/javascript/JS_Value.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/fpdfsdk/javascript/JS_Value.h b/fpdfsdk/javascript/JS_Value.h
index 8adec4b1d1..958c5e070e 100644
--- a/fpdfsdk/javascript/JS_Value.h
+++ b/fpdfsdk/javascript/JS_Value.h
@@ -46,6 +46,7 @@ class CJS_Value {
CJS_Value(CJS_Runtime* pRuntime, CJS_Array& array);
~CJS_Value();
+ CJS_Value(const CJS_Value& other);
void SetNull();
void Attach(v8::Local<v8::Value> pValue, Type t);
@@ -137,6 +138,7 @@ class CJS_Array {
public:
CJS_Array(CJS_Runtime* pRuntime);
virtual ~CJS_Array();
+ CJS_Array(const CJS_Array& other);
void Attach(v8::Local<v8::Array> pArray);
void GetElement(unsigned index, CJS_Value& value);