| Index: third_party/WebKit/Source/core/xml/XPathParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/XPathParser.cpp b/third_party/WebKit/Source/core/xml/XPathParser.cpp
|
| index 1335f71deaae3fa037a5a5ca6807e69de69769ed..51dbd68e4af797b09b1c32309ec801509597f086 100644
|
| --- a/third_party/WebKit/Source/core/xml/XPathParser.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/XPathParser.cpp
|
| @@ -42,7 +42,7 @@ using namespace WTF;
|
| using namespace Unicode;
|
| using namespace XPath;
|
|
|
| -Parser* Parser::currentParser = nullptr;
|
| +Parser* Parser::current_parser_ = nullptr;
|
|
|
| enum XMLCat { NameStart, NameCont, NotPartOfName };
|
|
|
| @@ -475,10 +475,10 @@ Expression* Parser::parseStatement(const String& statement,
|
|
|
| m_resolver = resolver;
|
|
|
| - Parser* oldParser = currentParser;
|
| - currentParser = this;
|
| + Parser* oldParser = current_parser_;
|
| + current_parser_ = this;
|
| int parseError = xpathyyparse(this);
|
| - currentParser = oldParser;
|
| + current_parser_ = oldParser;
|
|
|
| if (parseError) {
|
| m_strings.clear();
|
|
|