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

Unified Diff: third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp

Issue 1414413002: SVG Web Animations: Add SVGInterpolationType pipeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_svgAttributeReference
Patch Set: Move assert to not wrong location Created 5 years, 2 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/SVGStaticStringList.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
index 7880aaaf7672b05ee23a810525ea4c54ca1ea4b7..429320b329bb68d748ff3bc69a7920969e8886f7 100644
--- a/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGStaticStringList.cpp
@@ -58,6 +58,12 @@ SVGPropertyBase* SVGStaticStringList::currentValueBase()
return m_value.get();
}
+const SVGPropertyBase& SVGStaticStringList::baseValueBase() const
+{
+ ASSERT_NOT_REACHED();
+ return *m_value;
+}
+
bool SVGStaticStringList::isAnimating() const
{
return false;

Powered by Google App Engine
This is Rietveld 408576698