diff options
Diffstat (limited to 'fxjs/cfxjse_arguments.h')
-rw-r--r-- | fxjs/cfxjse_arguments.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fxjs/cfxjse_arguments.h b/fxjs/cfxjse_arguments.h index 92a36c842e..e24fc8feb8 100644 --- a/fxjs/cfxjse_arguments.h +++ b/fxjs/cfxjse_arguments.h @@ -25,12 +25,10 @@ class CFXJSE_Arguments { int32_t GetInt32(int32_t index) const; float GetFloat(int32_t index) const; ByteString GetUTF8String(int32_t index) const; - CFXJSE_HostObject* GetObject(int32_t index, - CFXJSE_Class* pClass = nullptr) const; CFXJSE_Value* GetReturnValue() const; private: - const v8::FunctionCallbackInfo<v8::Value>* m_pInfo; + UnownedPtr<const v8::FunctionCallbackInfo<v8::Value>> m_pInfo; UnownedPtr<CFXJSE_Value> m_pRetValue; }; |