summaryrefslogtreecommitdiff
path: root/fxjs/cfxjse_arguments.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-08-29 23:18:08 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-29 23:18:08 +0000
commitd5f427901b52e1311ab51f16e87459ec34691591 (patch)
tree7dd25968b86a92bcba4db82361df989f118df4a4 /fxjs/cfxjse_arguments.h
parent9e90e7987de10832b505cc0b46abf502b6f5eb7a (diff)
downloadpdfium-d5f427901b52e1311ab51f16e87459ec34691591.tar.xz
Stop using deprecated V8 APIs in CJS_Runtime.
Also for CFXJSE_Arguments. Change-Id: I15bfa4e09675bb48aecfa0c55539bf8dc50675e6 Reviewed-on: https://pdfium-review.googlesource.com/41370 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fxjs/cfxjse_arguments.h')
-rw-r--r--fxjs/cfxjse_arguments.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fxjs/cfxjse_arguments.h b/fxjs/cfxjse_arguments.h
index e24fc8feb8..d523d6f906 100644
--- a/fxjs/cfxjse_arguments.h
+++ b/fxjs/cfxjse_arguments.h
@@ -28,8 +28,8 @@ class CFXJSE_Arguments {
CFXJSE_Value* GetReturnValue() const;
private:
- UnownedPtr<const v8::FunctionCallbackInfo<v8::Value>> m_pInfo;
- UnownedPtr<CFXJSE_Value> m_pRetValue;
+ UnownedPtr<const v8::FunctionCallbackInfo<v8::Value>> const m_pInfo;
+ UnownedPtr<CFXJSE_Value> const m_pRetValue;
};
#endif // FXJS_CFXJSE_ARGUMENTS_H_