From 9cbd2dd8ff0812aae57a99d6a7dc285cc8b9e262 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Fri, 2 Feb 2018 17:24:58 +0000 Subject: 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 Commit-Queue: Tom Sepez --- xfa/fxfa/fxfa.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'xfa') diff --git a/xfa/fxfa/fxfa.h b/xfa/fxfa/fxfa.h index b9998779a7..4a1f8b32fc 100644 --- a/xfa/fxfa/fxfa.h +++ b/xfa/fxfa/fxfa.h @@ -251,12 +251,13 @@ class IXFA_DocEnvironment { virtual FX_ARGB GetHighlightColor(CXFA_FFDoc* hDoc) = 0; virtual bool Submit(CXFA_FFDoc* hDoc, CXFA_Submit* submit) = 0; - virtual bool GetGlobalProperty(CXFA_FFDoc* hDoc, - const ByteStringView& szPropName, - CFXJSE_Value* pValue) = 0; - virtual bool SetGlobalProperty(CXFA_FFDoc* hDoc, - const ByteStringView& szPropName, - CFXJSE_Value* pValue) = 0; + virtual bool GetPropertyFromNonXFAGlobalObject( + CXFA_FFDoc* hDoc, + const ByteStringView& szPropName, + CFXJSE_Value* pValue) = 0; + virtual bool SetPropertyInNonXFAGlobalObject(CXFA_FFDoc* hDoc, + const ByteStringView& szPropName, + CFXJSE_Value* pValue) = 0; virtual RetainPtr OpenLinkedFile( CXFA_FFDoc* hDoc, const WideString& wsLink) = 0; -- cgit v1.2.3