From e005dc33c31a2e701e1af3a0a3e5775cabbf1ddd Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 19 Jun 2018 17:33:32 +0000 Subject: Move fxcrt::{Byte,Wide}Strings with std::move(). Remove some string copies in barcode that were noticed whilst looking for moves. Change-Id: Ieda34d00f633576ba1f0dca283dcdabfb36f236c Reviewed-on: https://pdfium-review.googlesource.com/35410 Reviewed-by: dsinclair Reviewed-by: Tom Sepez Commit-Queue: Tom Sepez --- fxjs/cjs_globaldata.h | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'fxjs/cjs_globaldata.h') diff --git a/fxjs/cjs_globaldata.h b/fxjs/cjs_globaldata.h index b9a4b2123e..9ce4358fd4 100644 --- a/fxjs/cjs_globaldata.h +++ b/fxjs/cjs_globaldata.h @@ -29,16 +29,14 @@ class CJS_GlobalData { static CJS_GlobalData* GetRetainedInstance(CPDFSDK_FormFillEnvironment* pApp); void Release(); - void SetGlobalVariableNumber(const ByteString& propname, double dData); - void SetGlobalVariableBoolean(const ByteString& propname, bool bData); - void SetGlobalVariableString(const ByteString& propname, - const ByteString& sData); - void SetGlobalVariableObject(const ByteString& propname, + void SetGlobalVariableNumber(ByteString propname, double dData); + void SetGlobalVariableBoolean(ByteString propname, bool bData); + void SetGlobalVariableString(ByteString propname, const ByteString& sData); + void SetGlobalVariableObject(ByteString propname, const CJS_GlobalVariableArray& array); - void SetGlobalVariableNull(const ByteString& propname); - bool SetGlobalVariablePersistent(const ByteString& propname, - bool bPersistent); - bool DeleteGlobalVariable(const ByteString& propname); + void SetGlobalVariableNull(ByteString propname); + bool SetGlobalVariablePersistent(ByteString propname, bool bPersistent); + bool DeleteGlobalVariable(ByteString propname); int32_t GetSize() const; CJS_GlobalData_Element* GetAt(int index) const; -- cgit v1.2.3