diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-02-02 17:24:58 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-02 17:24:58 +0000 |
commit | 9cbd2dd8ff0812aae57a99d6a7dc285cc8b9e262 (patch) | |
tree | 1154231be2ecfddc3635f6e0e3f837e0dd70376d /fxjs/ijs_runtime.h | |
parent | 48b47f48ae6c5e3206bc306f2215a82273d5a313 (diff) | |
download | pdfium-9cbd2dd8ff0812aae57a99d6a7dc285cc8b9e262.tar.xz |
Make global object function names clearer.
Also tidy some sub-expressions.
Change-Id: Ieabd5f6cea60e8ec03c8ce5ebe372fc80b05a7bb
Reviewed-on: https://pdfium-review.googlesource.com/25150
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/ijs_runtime.h')
-rw-r--r-- | fxjs/ijs_runtime.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fxjs/ijs_runtime.h b/fxjs/ijs_runtime.h index 9fe5d2fed8..b97c65ef90 100644 --- a/fxjs/ijs_runtime.h +++ b/fxjs/ijs_runtime.h @@ -34,10 +34,10 @@ class IJS_Runtime { virtual int ExecuteScript(const WideString& script, WideString* info) = 0; #ifdef PDF_ENABLE_XFA - virtual bool GetValueByName(const ByteStringView& utf8Name, - CFXJSE_Value* pValue) = 0; - virtual bool SetValueByName(const ByteStringView& utf8Name, - CFXJSE_Value* pValue) = 0; + virtual bool GetValueByNameFromGlobalObject(const ByteStringView& utf8Name, + CFXJSE_Value* pValue) = 0; + virtual bool SetValueByNameInGlobalObject(const ByteStringView& utf8Name, + CFXJSE_Value* pValue) = 0; #endif // PDF_ENABLE_XFA protected: |