diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-23 20:41:04 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-23 20:41:04 +0000 |
commit | 4c358488d0a8daf3a625cae842efcf27a3bb62f5 (patch) | |
tree | b830f9e75a27f4e3c6a381d01e0932edfd551177 /fxjs/cfxjse_value.cpp | |
parent | 2bfa78540c375916ec9973f0ae11271b098180bd (diff) | |
download | pdfium-4c358488d0a8daf3a625cae842efcf27a3bb62f5.tar.xz |
Remove argument from CFXJSE_Value::ToHostObject()
Like the other cases, it is always nullptr.
Change-Id: I280f25899ffbe5e35f4ef3342aec7896edf3e1f2
Reviewed-on: https://pdfium-review.googlesource.com/38592
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cfxjse_value.cpp')
-rw-r--r-- | fxjs/cfxjse_value.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/fxjs/cfxjse_value.cpp b/fxjs/cfxjse_value.cpp index 5d7f885746..915fefc119 100644 --- a/fxjs/cfxjse_value.cpp +++ b/fxjs/cfxjse_value.cpp @@ -68,18 +68,15 @@ CFXJSE_Value::CFXJSE_Value(v8::Isolate* pIsolate) : m_pIsolate(pIsolate) {} CFXJSE_Value::~CFXJSE_Value() {} -CFXJSE_HostObject* CFXJSE_Value::ToHostObject(CFXJSE_Class* lpClass) const { - ASSERT(!m_hValue.IsEmpty()); - +CFXJSE_HostObject* CFXJSE_Value::ToHostObject() const { CFXJSE_ScopeUtil_IsolateHandleRootContext scope(GetIsolate()); v8::Local<v8::Value> pValue = v8::Local<v8::Value>::New(GetIsolate(), m_hValue); ASSERT(!pValue.IsEmpty()); - if (!pValue->IsObject()) return nullptr; - return FXJSE_RetrieveObjectBinding(pValue.As<v8::Object>(), lpClass); + return FXJSE_RetrieveObjectBinding(pValue.As<v8::Object>(), nullptr); } void CFXJSE_Value::SetObject(CFXJSE_HostObject* lpObject, |