diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-03-15 15:42:31 -0400 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-03-15 15:42:31 -0400 |
commit | 3a8051c8cb55e3c108c1f860dc743c42827ae4fa (patch) | |
tree | a74f6fe441e57669f7b25766f1d724e8ef8ed0d4 /xfa/fxjse/cfxjse_arguments.h | |
parent | 56c1019e694ba9c2d6624d3c11d99c22798ffdc8 (diff) | |
download | pdfium-3a8051c8cb55e3c108c1f860dc743c42827ae4fa.tar.xz |
Move xfa/include/fxjse/fxjse.h into xfa/fxjse/include.
This CL moves the fxjse.h header and splits the cfxjse_arguments.h into its
own file.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1807623002 .
Diffstat (limited to 'xfa/fxjse/cfxjse_arguments.h')
-rw-r--r-- | xfa/fxjse/cfxjse_arguments.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/xfa/fxjse/cfxjse_arguments.h b/xfa/fxjse/cfxjse_arguments.h new file mode 100644 index 0000000000..b38d0772c0 --- /dev/null +++ b/xfa/fxjse/cfxjse_arguments.h @@ -0,0 +1,25 @@ +// 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 XFA_FXJSE_CFXJSE_ARGUMENTS_H_ +#define XFA_FXJSE_CFXJSE_ARGUMENTS_H_ + +#include "xfa/fxjse/include/fxjse.h" + +class CFXJSE_Arguments { + public: + FXJSE_HRUNTIME GetRuntime() const; + int32_t GetLength() const; + FXJSE_HVALUE 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; + void* GetObject(int32_t index, FXJSE_HCLASS hClass = nullptr) const; + FXJSE_HVALUE GetReturnValue(); +}; + +#endif // XFA_FXJSE_CFXJSE_ARGUMENTS_H_ |