diff options
author | tsepez <tsepez@chromium.org> | 2016-08-05 09:32:50 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-05 09:32:50 -0700 |
commit | 135b99861d0d898850754a845f607ec48f0bcccc (patch) | |
tree | 3e045fd8e3ed049e2a5a24aa727cdf0a07c05efe /fpdfsdk/javascript/JS_Value.h | |
parent | b20ab6c7acb3be1393461eb650ca8fa4660c937e (diff) | |
download | pdfium-135b99861d0d898850754a845f607ec48f0bcccc.tar.xz |
Return v8::Date specialization not v8::Value where possiblechromium/2824chromium/2823chromium/2822chromium/2821
Also get rid of FXJS_ValueCopy() while we're at it.
BUG=pdfium:556
Review-Url: https://codereview.chromium.org/2215093002
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; }; |