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

Unified Diff: third_party/WebKit/Source/core/xml/XPathValue.h

Issue 1743863002: Rename enums/functions that collide in chromium style in core/svg,xml (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-10: rebase Created 4 years, 10 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/XPathValue.h
diff --git a/third_party/WebKit/Source/core/xml/XPathValue.h b/third_party/WebKit/Source/core/xml/XPathValue.h
index 78ac0c0886b73104195073b193875dccffc2f33c..28b59d1bf192752704a8fafd04507e41a13162e1 100644
--- a/third_party/WebKit/Source/core/xml/XPathValue.h
+++ b/third_party/WebKit/Source/core/xml/XPathValue.h
@@ -79,7 +79,7 @@ public:
static const struct AdoptTag { } adopt;
Value(NodeSet* value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
- Type type() const { return m_type; }
+ Type getType() const { return m_type; }
bool isNodeSet() const { return m_type == NodeSetValue; }
bool isBoolean() const { return m_type == BooleanValue; }
« no previous file with comments | « third_party/WebKit/Source/core/xml/XPathStep.cpp ('k') | third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698