diff options
Diffstat (limited to 'fpdfsdk/javascript/JS_Value.h')
-rw-r--r-- | fpdfsdk/javascript/JS_Value.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/javascript/JS_Value.h b/fpdfsdk/javascript/JS_Value.h index 5943aaf888..01b4e5ba45 100644 --- a/fpdfsdk/javascript/JS_Value.h +++ b/fpdfsdk/javascript/JS_Value.h @@ -159,7 +159,7 @@ class CJS_Date { int sec); virtual ~CJS_Date(); - void Attach(v8::Local<v8::Value> pDate); + void Attach(v8::Local<v8::Date> pDate); bool IsValidDate() const; int GetYear() const; @@ -186,7 +186,7 @@ class CJS_Date { CFX_WideString ToString() const; protected: - v8::Local<v8::Value> m_pDate; + v8::Local<v8::Date> m_pDate; CJS_Runtime* const m_pJSRuntime; }; |