summaryrefslogtreecommitdiff
path: root/core/fxcrt/xml/cfx_xmlnode.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-03-16 19:25:30 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-03-16 19:25:30 +0000
commit9d7c7ff0a5f0da6e7574557e5a8e82b9b5b7c1ae (patch)
treea9559fdcd8e24951985968cc9f8c32c6f8da1b5d /core/fxcrt/xml/cfx_xmlnode.h
parent7d75650672a848428aaadb603b2814d33dfb479f (diff)
downloadpdfium-9d7c7ff0a5f0da6e7574557e5a8e82b9b5b7c1ae.tar.xz
Make more variables const-ref.chromium/3373
Found by ClangTidy. BUG=pdfium:1040 Change-Id: I6d7cb26ae2d12f5650f73596d0b991234b076f57 Reviewed-on: https://pdfium-review.googlesource.com/28712 Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fxcrt/xml/cfx_xmlnode.h')
-rw-r--r--core/fxcrt/xml/cfx_xmlnode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcrt/xml/cfx_xmlnode.h b/core/fxcrt/xml/cfx_xmlnode.h
index cf2158af5b..76625e3ca2 100644
--- a/core/fxcrt/xml/cfx_xmlnode.h
+++ b/core/fxcrt/xml/cfx_xmlnode.h
@@ -45,8 +45,8 @@ class CFX_XMLNode {
void DeleteChildren();
protected:
- WideString AttributeToString(WideString name, WideString value);
- WideString EncodeEntities(WideString value);
+ WideString AttributeToString(const WideString& name, const WideString& value);
+ WideString EncodeEntities(const WideString& value);
private:
CFX_XMLNode* parent_ = nullptr;