summaryrefslogtreecommitdiff
path: root/xfa/fxjse/cfxjse_arguments.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-06-01 16:58:24 -0700
committerCommit bot <commit-bot@chromium.org>2016-06-01 16:58:24 -0700
commit4ee98cd67354a2ab26134c0688768d4aa92350a2 (patch)
tree3b38b375a089eb0e02dfde75e0bec8871d79aec7 /xfa/fxjse/cfxjse_arguments.h
parentfb2a824f87f7096382681fd258906823ef93ebec (diff)
downloadpdfium-4ee98cd67354a2ab26134c0688768d4aa92350a2.tar.xz
Stop casting struct CFXJSE_ArgumentsImpl to unrelated class CFXJSE_Arguments
Remove the 'Impl entirely, and put the details into the class itself. Review-Url: https://codereview.chromium.org/2036513002
Diffstat (limited to 'xfa/fxjse/cfxjse_arguments.h')
-rw-r--r--xfa/fxjse/cfxjse_arguments.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/xfa/fxjse/cfxjse_arguments.h b/xfa/fxjse/cfxjse_arguments.h
index 48a3bfff8f..3028d39def 100644
--- a/xfa/fxjse/cfxjse_arguments.h
+++ b/xfa/fxjse/cfxjse_arguments.h
@@ -11,6 +11,10 @@
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;
@@ -20,6 +24,10 @@ class CFXJSE_Arguments {
CFX_ByteString GetUTF8String(int32_t index) const;
void* 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 // XFA_FXJSE_CFXJSE_ARGUMENTS_H_