summaryrefslogtreecommitdiff
path: root/xfa/fxjse/cfxjse_arguments.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-05-26 10:14:00 -0700
committerCommit bot <commit-bot@chromium.org>2016-05-26 10:14:00 -0700
commite9885e77a7daf7a8d45eaf0290a1ea5f208c24c6 (patch)
tree0d5006c9b2ab336e785a4a812f96a16ab6d527f5 /xfa/fxjse/cfxjse_arguments.h
parentd2b93dfa15dbb7fd42b7cf05fc248d7f5c87f1ef (diff)
downloadpdfium-e9885e77a7daf7a8d45eaf0290a1ea5f208c24c6.tar.xz
Replace FXJSE_HCLASS with CFXJSE_Class*
This CL removes FXJSE_HCLASS and replaces with CFXJSE_Class*. All variables have been updated to the new type. Review-Url: https://codereview.chromium.org/2014213002
Diffstat (limited to 'xfa/fxjse/cfxjse_arguments.h')
-rw-r--r--xfa/fxjse/cfxjse_arguments.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxjse/cfxjse_arguments.h b/xfa/fxjse/cfxjse_arguments.h
index 423e22d888..d86ec0f1f8 100644
--- a/xfa/fxjse/cfxjse_arguments.h
+++ b/xfa/fxjse/cfxjse_arguments.h
@@ -18,7 +18,7 @@ class CFXJSE_Arguments {
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;
+ void* GetObject(int32_t index, CFXJSE_Class* hClass = nullptr) const;
FXJSE_HVALUE GetReturnValue();
};