Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(509)

Side by Side Diff: xfa/fxjse/cfxjse_arguments.h

Issue 2012253002: Remove FXJSE_HOBJECT and FXJSE_HVALUE for CFXJSE_Value* (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@fxjse_hclass
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp ('k') | xfa/fxjse/class.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
10 #include "xfa/fxjse/include/fxjse.h" 10 #include "xfa/fxjse/include/fxjse.h"
11 11
12 class CFXJSE_Arguments { 12 class CFXJSE_Arguments {
13 public: 13 public:
14 v8::Isolate* GetRuntime() const; 14 v8::Isolate* GetRuntime() const;
15 int32_t GetLength() const; 15 int32_t GetLength() const;
16 FXJSE_HVALUE GetValue(int32_t index) const; 16 CFXJSE_Value* GetValue(int32_t index) const;
17 FX_BOOL GetBoolean(int32_t index) const; 17 FX_BOOL GetBoolean(int32_t index) const;
18 int32_t GetInt32(int32_t index) const; 18 int32_t GetInt32(int32_t index) const;
19 FX_FLOAT GetFloat(int32_t index) const; 19 FX_FLOAT GetFloat(int32_t index) const;
20 CFX_ByteString GetUTF8String(int32_t index) const; 20 CFX_ByteString GetUTF8String(int32_t index) const;
21 void* GetObject(int32_t index, CFXJSE_Class* hClass = nullptr) const; 21 void* GetObject(int32_t index, CFXJSE_Class* pClass = nullptr) const;
22 FXJSE_HVALUE GetReturnValue(); 22 CFXJSE_Value* GetReturnValue();
23 }; 23 };
24 24
25 #endif // XFA_FXJSE_CFXJSE_ARGUMENTS_H_ 25 #endif // XFA_FXJSE_CFXJSE_ARGUMENTS_H_
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp ('k') | xfa/fxjse/class.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698