summaryrefslogtreecommitdiff
path: root/fpdfsdk/javascript/Annot.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-10-23 09:44:30 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-10-23 17:57:28 +0000
commit33d13f2231a07e7b32ff25da6a6a28cb619d18a9 (patch)
tree8be1d6a857dff58d8aacbc1dc722fceac8343235 /fpdfsdk/javascript/Annot.h
parentc970895f94cf76eb738d0a583ae139fecdd85268 (diff)
downloadpdfium-33d13f2231a07e7b32ff25da6a6a28cb619d18a9.tar.xz
Remove CJS_PropValue
This CL removes the CJS_PropValue class and uses CJS_Value directly. The various Set methods have been moved to CJS_Value and the runtime provided as needed. Change-Id: Ib5d3b9efc9b6cf8182be8f19af98599379c3d7db Reviewed-on: https://pdfium-review.googlesource.com/16431 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/javascript/Annot.h')
-rw-r--r--fpdfsdk/javascript/Annot.h16
1 files changed, 6 insertions, 10 deletions
diff --git a/fpdfsdk/javascript/Annot.h b/fpdfsdk/javascript/Annot.h
index c5fb3f2e1e..5e06ae8070 100644
--- a/fpdfsdk/javascript/Annot.h
+++ b/fpdfsdk/javascript/Annot.h
@@ -17,20 +17,16 @@ class Annot : public CJS_EmbedObj {
explicit Annot(CJS_Object* pJSObject);
~Annot() override;
- bool get_hidden(CJS_Runtime* pRuntime, CJS_PropValue* vp, WideString* sError);
+ bool get_hidden(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError);
bool set_hidden(CJS_Runtime* pRuntime,
- const CJS_PropValue& vp,
+ const CJS_Value& vp,
WideString* sError);
- bool get_name(CJS_Runtime* pRuntime, CJS_PropValue* vp, WideString* sError);
- bool set_name(CJS_Runtime* pRuntime,
- const CJS_PropValue& vp,
- WideString* sError);
+ bool get_name(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError);
+ bool set_name(CJS_Runtime* pRuntime, const CJS_Value& vp, WideString* sError);
- bool get_type(CJS_Runtime* pRuntime, CJS_PropValue* vp, WideString* sError);
- bool set_type(CJS_Runtime* pRuntime,
- const CJS_PropValue& vp,
- WideString* sError);
+ bool get_type(CJS_Runtime* pRuntime, CJS_Value* vp, WideString* sError);
+ bool set_type(CJS_Runtime* pRuntime, const CJS_Value& vp, WideString* sError);
void SetSDKAnnot(CPDFSDK_BAAnnot* annot);