diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-10-24 15:15:27 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-10-24 19:28:02 +0000 |
commit | 3cac3602f24f56413cc2ca312731675fc080b7ef (patch) | |
tree | cc5741593ce51f41276be2f8a1826bf452a7841c /fpdfsdk/javascript/event.cpp | |
parent | 1b2a18ec4ed99fc2ac56b5fde230bc2b348d9725 (diff) | |
download | pdfium-3cac3602f24f56413cc2ca312731675fc080b7ef.tar.xz |
Remove GetType from CJS_Value
This CL removes the GetType method from CJS_Value and, instead,
retrieves the value from the v8 object directly.
Change-Id: Ia8390f3ead163c09a39cae493e75fccdd41a0961
Reviewed-on: https://pdfium-review.googlesource.com/16615
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/event.cpp')
-rw-r--r-- | fpdfsdk/javascript/event.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/javascript/event.cpp b/fpdfsdk/javascript/event.cpp index 337ce40cd8..da81aac45a 100644 --- a/fpdfsdk/javascript/event.cpp +++ b/fpdfsdk/javascript/event.cpp @@ -61,7 +61,7 @@ bool event::set_change(CJS_Runtime* pRuntime, CJS_EventHandler* pEvent = pRuntime->GetCurrentEventContext()->GetEventHandler(); - if (vp.GetType() == CJS_Value::VT_string) { + if (vp.ToV8Value()->IsString()) { WideString& wChange = pEvent->Change(); wChange = pRuntime->ToWideString(vp.ToV8Value()); } |