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

Side by Side Diff: fxjs/include/cfxjse_arguments.h

Issue 2380713005: Move fxjs/include to fxjs (Closed)
Patch Set: Rebase to master Created 4 years, 2 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 | « fxjs/fxjse.h ('k') | fxjs/include/cfxjse_class.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #ifndef FXJS_INCLUDE_CFXJSE_ARGUMENTS_H_
8 #define FXJS_INCLUDE_CFXJSE_ARGUMENTS_H_
9
10 #include <memory>
11
12 #include "fxjs/include/fxjse.h"
13
14 class CFXJSE_Class;
15
16 class CFXJSE_Arguments {
17 public:
18 CFXJSE_Arguments(const v8::FunctionCallbackInfo<v8::Value>* pInfo,
19 CFXJSE_Value* pRetValue)
20 : m_pInfo(pInfo), m_pRetValue(pRetValue) {}
21
22 v8::Isolate* GetRuntime() const;
23 int32_t GetLength() const;
24 std::unique_ptr<CFXJSE_Value> GetValue(int32_t index) const;
25 FX_BOOL GetBoolean(int32_t index) const;
26 int32_t GetInt32(int32_t index) const;
27 FX_FLOAT GetFloat(int32_t index) const;
28 CFX_ByteString GetUTF8String(int32_t index) const;
29 CFXJSE_HostObject* GetObject(int32_t index,
30 CFXJSE_Class* pClass = nullptr) const;
31 CFXJSE_Value* GetReturnValue();
32
33 private:
34 const v8::FunctionCallbackInfo<v8::Value>* m_pInfo;
35 CFXJSE_Value* m_pRetValue;
36 };
37
38 #endif // FXJS_INCLUDE_CFXJSE_ARGUMENTS_H_
OLDNEW
« no previous file with comments | « fxjs/fxjse.h ('k') | fxjs/include/cfxjse_class.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698