diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-05-02 18:08:17 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-02 18:08:17 +0000 |
commit | 8f893b69012d4f5029cfedf91c5ef653717257a8 (patch) | |
tree | 63029b0459277aee7d87c6e6d986885f42b78a54 /core/fxcrt/xml/cfx_xmlparser.h | |
parent | 9bd3566d82deb39ea282ddafa4f89930160e637c (diff) | |
download | pdfium-8f893b69012d4f5029cfedf91c5ef653717257a8.tar.xz |
[xml] Rename CFX_XMLParser::ParseTextChar
This CL renames ParseTextChar to ProcessTextChar to make the usage
clearer. The method does not do any parsing, it just decides if the char
is part of an entity or not.
Change-Id: I9b70a82a421b02e2352cd07bd88b1e581d8578b7
Reviewed-on: https://pdfium-review.googlesource.com/31930
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fxcrt/xml/cfx_xmlparser.h')
-rw-r--r-- | core/fxcrt/xml/cfx_xmlparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/xml/cfx_xmlparser.h b/core/fxcrt/xml/cfx_xmlparser.h index 6bf1946402..db8239bd98 100644 --- a/core/fxcrt/xml/cfx_xmlparser.h +++ b/core/fxcrt/xml/cfx_xmlparser.h @@ -71,7 +71,7 @@ class CFX_XMLParser { TargetData }; - void ParseTextChar(wchar_t ch); + void ProcessTextChar(wchar_t ch); bool GetStatus() const; CFX_XMLNode* current_node_ = nullptr; |