Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #ifndef XFA_FXJSE_CFXJSE_ARGUMENTS_H_ | 7 #ifndef XFA_FXJSE_CFXJSE_ARGUMENTS_H_ |
| 8 #define XFA_FXJSE_CFXJSE_ARGUMENTS_H_ | 8 #define XFA_FXJSE_CFXJSE_ARGUMENTS_H_ |
| 9 | 9 |
|
Tom Sepez
2016/06/08 17:08:10
#include <memory>
dsinclair
2016/06/08 19:44:30
Done.
| |
| 10 #include "xfa/fxjse/include/fxjse.h" | 10 #include "xfa/fxjse/include/fxjse.h" |
| 11 | 11 |
| 12 class CFXJSE_Class; | |
| 13 | |
| 12 class CFXJSE_Arguments { | 14 class CFXJSE_Arguments { |
| 13 public: | 15 public: |
| 14 CFXJSE_Arguments(const v8::FunctionCallbackInfo<v8::Value>* pInfo, | 16 CFXJSE_Arguments(const v8::FunctionCallbackInfo<v8::Value>* pInfo, |
| 15 CFXJSE_Value* pRetValue) | 17 CFXJSE_Value* pRetValue) |
| 16 : m_pInfo(pInfo), m_pRetValue(pRetValue) {} | 18 : m_pInfo(pInfo), m_pRetValue(pRetValue) {} |
| 17 | 19 |
| 18 v8::Isolate* GetRuntime() const; | 20 v8::Isolate* GetRuntime() const; |
| 19 int32_t GetLength() const; | 21 int32_t GetLength() const; |
| 20 std::unique_ptr<CFXJSE_Value> GetValue(int32_t index) const; | 22 std::unique_ptr<CFXJSE_Value> GetValue(int32_t index) const; |
| 21 FX_BOOL GetBoolean(int32_t index) const; | 23 FX_BOOL GetBoolean(int32_t index) const; |
| 22 int32_t GetInt32(int32_t index) const; | 24 int32_t GetInt32(int32_t index) const; |
| 23 FX_FLOAT GetFloat(int32_t index) const; | 25 FX_FLOAT GetFloat(int32_t index) const; |
| 24 CFX_ByteString GetUTF8String(int32_t index) const; | 26 CFX_ByteString GetUTF8String(int32_t index) const; |
| 25 void* GetObject(int32_t index, CFXJSE_Class* pClass = nullptr) const; | 27 void* GetObject(int32_t index, CFXJSE_Class* pClass = nullptr) const; |
| 26 CFXJSE_Value* GetReturnValue(); | 28 CFXJSE_Value* GetReturnValue(); |
| 27 | 29 |
| 28 private: | 30 private: |
| 29 const v8::FunctionCallbackInfo<v8::Value>* m_pInfo; | 31 const v8::FunctionCallbackInfo<v8::Value>* m_pInfo; |
| 30 CFXJSE_Value* m_pRetValue; | 32 CFXJSE_Value* m_pRetValue; |
| 31 }; | 33 }; |
| 32 | 34 |
| 33 #endif // XFA_FXJSE_CFXJSE_ARGUMENTS_H_ | 35 #endif // XFA_FXJSE_CFXJSE_ARGUMENTS_H_ |
| OLD | NEW |