// Copyright 2016 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef FXJS_CFXJSE_ARGUMENTS_H_ #define FXJS_CFXJSE_ARGUMENTS_H_ #include #include "core/fxcrt/fx_string.h" #include "core/fxcrt/unowned_ptr.h" #include "v8/include/v8.h" class CFXJSE_Value; class CFXJSE_Arguments { public: CFXJSE_Arguments(const v8::FunctionCallbackInfo* pInfo, CFXJSE_Value* pRetValue); ~CFXJSE_Arguments(); int32_t GetLength() const; std::unique_ptr GetValue(int32_t index) const; bool GetBoolean(int32_t index) const; int32_t GetInt32(int32_t index) const; float GetFloat(int32_t index) const; ByteString GetUTF8String(int32_t index) const; CFXJSE_Value* GetReturnValue() const; private: UnownedPtr> const m_pInfo; UnownedPtr const m_pRetValue; }; #endif // FXJS_CFXJSE_ARGUMENTS_H_