diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-16 14:23:07 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-16 14:23:07 +0000 |
commit | 3f9549e7f00b649471c4d658bbfb6bf031b8f53e (patch) | |
tree | da0ec4380365c2b3a42b53c1ba291d7529646bd7 /fxjs/cjx_node.h | |
parent | ce7ccd5f638eff42c6c79da682061fa2c39b028f (diff) | |
download | pdfium-3f9549e7f00b649471c4d658bbfb6bf031b8f53e.tar.xz |
Convert TryNamespace to optional
This CL changes CJX_Node::TryNamespace to return a pdfium::Optional
instead of a bool with an out parameter.
Change-Id: I50ccb3544179108d156d763c25e03abab4306c19
Reviewed-on: https://pdfium-review.googlesource.com/18551
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cjx_node.h')
-rw-r--r-- | fxjs/cjx_node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/cjx_node.h b/fxjs/cjx_node.h index cb6b6867fd..686c54c164 100644 --- a/fxjs/cjx_node.h +++ b/fxjs/cjx_node.h @@ -108,7 +108,7 @@ class CJX_Node : public CJX_Object { XFA_MAPDATABLOCKCALLBACKINFO* pCallbackInfo); void* GetObject(XFA_Attribute eAttr); - bool TryNamespace(WideString& wsNamespace); + pdfium::Optional<WideString> TryNamespace(); void MergeAllData(CXFA_Node* pDstModule); |