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

Unified Diff: third_party/WebKit/Source/core/svg/animation/SVGSMILElement.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/svg/animation/SVGSMILElement.h
diff --git a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
index 11f378535bc284cb634f3ede7245f3b14db8c16d..7d52ab4c08d2075e0c61e459321534360cc370d6 100644
--- a/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
+++ b/third_party/WebKit/Source/core/svg/animation/SVGSMILElement.h
@@ -191,8 +191,8 @@ private:
~Condition();
DECLARE_TRACE();
- Type type() const { return m_type; }
- BeginOrEnd beginOrEnd() const { return m_beginOrEnd; }
+ Type getType() const { return m_type; }
+ BeginOrEnd getBeginOrEnd() const { return m_beginOrEnd; }
String baseID() const { return m_baseID; }
String name() const { return m_name; }
SMILTime offset() const { return m_offset; }

Powered by Google App Engine
This is Rietveld 408576698