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.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/fpdfsdk/javascript/JS_Value.h b/fpdfsdk/javascript/JS_Value.h
index c508fe80d7..e3947eb66b 100644
--- a/fpdfsdk/javascript/JS_Value.h
+++ b/fpdfsdk/javascript/JS_Value.h
@@ -39,22 +39,6 @@ class CJS_Return {
v8::Local<v8::Value> return_;
};
-class CJS_Value {
- public:
- CJS_Value();
- explicit CJS_Value(v8::Local<v8::Value> pValue);
- CJS_Value(const CJS_Value& other);
- ~CJS_Value();
-
- // These calls may re-enter JS (and hence invalidate objects).
- void Set(v8::Local<v8::Value> pValue);
-
- v8::Local<v8::Value> ToV8Value() const;
-
- private:
- v8::Local<v8::Value> m_pValue;
-};
-
class CJS_Array {
public:
CJS_Array();