From 1116ef0b1c45a4968d45a21d995193a7670126b3 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 23 Jul 2018 20:55:04 +0000 Subject: Remove unused CFXJSE_Arguments::GetObject() Insert another unowned ptr along the way. Change-Id: I953baa3448282fd4f655bb99524f131f66b7ed86 Reviewed-on: https://pdfium-review.googlesource.com/38593 Reviewed-by: Lei Zhang Commit-Queue: Tom Sepez --- fxjs/cfxjse_arguments.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'fxjs/cfxjse_arguments.cpp') diff --git a/fxjs/cfxjse_arguments.cpp b/fxjs/cfxjse_arguments.cpp index 663996ce88..b8670ad981 100644 --- a/fxjs/cfxjse_arguments.cpp +++ b/fxjs/cfxjse_arguments.cpp @@ -45,15 +45,6 @@ ByteString CFXJSE_Arguments::GetUTF8String(int32_t index) const { return ByteString(*szStringVal); } -CFXJSE_HostObject* CFXJSE_Arguments::GetObject(int32_t index, - CFXJSE_Class* pClass) const { - v8::Local hValue = (*m_pInfo)[index]; - ASSERT(!hValue.IsEmpty()); - if (!hValue->IsObject()) - return nullptr; - return FXJSE_RetrieveObjectBinding(hValue.As(), pClass); -} - CFXJSE_Value* CFXJSE_Arguments::GetReturnValue() const { return m_pRetValue.Get(); } -- cgit v1.2.3