diff options
author | dsinclair <dsinclair@chromium.org> | 2016-09-29 17:29:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-29 17:29:48 -0700 |
commit | 435546810a7c48f09889c00600ad344850b71f95 (patch) | |
tree | 3c690ec1fe5df0c7feb509f4276bb26c87564345 /fxjs/include/cfxjse_arguments.h | |
parent | 114e46a1d97587973515e9aad7955e469c7486a8 (diff) | |
download | pdfium-435546810a7c48f09889c00600ad344850b71f95.tar.xz |
Move fxjs/include to fxjs
BUG=pdfium:611
Review-Url: https://codereview.chromium.org/2380713005
Diffstat (limited to 'fxjs/include/cfxjse_arguments.h')
-rw-r--r-- | fxjs/include/cfxjse_arguments.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/fxjs/include/cfxjse_arguments.h b/fxjs/include/cfxjse_arguments.h deleted file mode 100644 index e6c8659732..0000000000 --- a/fxjs/include/cfxjse_arguments.h +++ /dev/null @@ -1,38 +0,0 @@ -// 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_INCLUDE_CFXJSE_ARGUMENTS_H_ -#define FXJS_INCLUDE_CFXJSE_ARGUMENTS_H_ - -#include <memory> - -#include "fxjs/include/fxjse.h" - -class CFXJSE_Class; - -class CFXJSE_Arguments { - public: - CFXJSE_Arguments(const v8::FunctionCallbackInfo<v8::Value>* pInfo, - CFXJSE_Value* pRetValue) - : m_pInfo(pInfo), m_pRetValue(pRetValue) {} - - v8::Isolate* GetRuntime() const; - int32_t GetLength() const; - std::unique_ptr<CFXJSE_Value> GetValue(int32_t index) const; - FX_BOOL GetBoolean(int32_t index) const; - int32_t GetInt32(int32_t index) const; - FX_FLOAT GetFloat(int32_t index) const; - CFX_ByteString GetUTF8String(int32_t index) const; - CFXJSE_HostObject* GetObject(int32_t index, - CFXJSE_Class* pClass = nullptr) const; - CFXJSE_Value* GetReturnValue(); - - private: - const v8::FunctionCallbackInfo<v8::Value>* m_pInfo; - CFXJSE_Value* m_pRetValue; -}; - -#endif // FXJS_INCLUDE_CFXJSE_ARGUMENTS_H_ |