Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(648)

Unified Diff: third_party/WebKit/Source/core/xml/XPathParser.cpp

Issue 2611823003: ABANDONED CL: Changes to compile and pass tests after Big Blink Rename (excluding functions). (Closed)
Patch Set: Inducing merge conflicts to force human review and changes after rename. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698