diff options
author | dan sinclair <dsinclair@chromium.org> | 2018-04-16 17:59:07 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-16 17:59:07 +0000 |
commit | bdbfc08f96f89581bea277d5ddd9755e893067d7 (patch) | |
tree | 3639bd042f64e5a93480a87e5a1d374ffe56a3e6 /core/fxcrt/xml/cfx_xmlelement.h | |
parent | cce4d31e6e746bae72f2f31676c12f1d2851ade3 (diff) | |
download | pdfium-bdbfc08f96f89581bea277d5ddd9755e893067d7.tar.xz |
Convert CXFA_XMLLocale to CFX_XML
This CL converts CXFA_XMLLocale to use CFX_XML instead of CXML.
Change-Id: I1db617a658548ae5979f2f38d72c5b3000998663
Reviewed-on: https://pdfium-review.googlesource.com/30693
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcrt/xml/cfx_xmlelement.h')
-rw-r--r-- | core/fxcrt/xml/cfx_xmlelement.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/fxcrt/xml/cfx_xmlelement.h b/core/fxcrt/xml/cfx_xmlelement.h index e665e24a98..f713114eb7 100644 --- a/core/fxcrt/xml/cfx_xmlelement.h +++ b/core/fxcrt/xml/cfx_xmlelement.h @@ -23,6 +23,10 @@ class CFX_XMLElement : public CFX_XMLAttributeNode { std::unique_ptr<CFX_XMLNode> Clone() override; void Save(const RetainPtr<CFX_SeekableStreamProxy>& pXMLStream) override; + CFX_XMLElement* GetFirstChildNamed(const WideStringView& name) const; + CFX_XMLElement* GetNthChildNamed(const WideStringView& name, + size_t idx) const; + WideString GetLocalTagName() const; WideString GetNamespacePrefix() const; WideString GetNamespaceURI() const; |