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

Unified Diff: third_party/WebKit/Source/core/animation/StringKeyframe.cpp

Issue 2379983002: Remove unused Element parameter in StringKeyframe (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « third_party/WebKit/Source/core/animation/StringKeyframe.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/StringKeyframe.cpp
diff --git a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
index 0d1fc97dd6a4be09bc81ef9e0b6312c2d21494ee..a2071728273079afc2663399925617ce58dab249 100644
--- a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
+++ b/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
@@ -22,7 +22,7 @@ StringKeyframe::StringKeyframe(const StringKeyframe& copyFrom)
{
}
-void StringKeyframe::setCSSPropertyValue(CSSPropertyID property, const String& value, Element* element, StyleSheetContents* styleSheetContents)
+void StringKeyframe::setCSSPropertyValue(CSSPropertyID property, const String& value, StyleSheetContents* styleSheetContents)
{
DCHECK_NE(property, CSSPropertyInvalid);
if (CSSAnimations::isAnimatableProperty(property))
@@ -36,7 +36,7 @@ void StringKeyframe::setCSSPropertyValue(CSSPropertyID property, const CSSValue&
m_cssPropertyMap->setProperty(property, value, false);
}
-void StringKeyframe::setPresentationAttributeValue(CSSPropertyID property, const String& value, Element* element, StyleSheetContents* styleSheetContents)
+void StringKeyframe::setPresentationAttributeValue(CSSPropertyID property, const String& value, StyleSheetContents* styleSheetContents)
{
DCHECK_NE(property, CSSPropertyInvalid);
if (CSSAnimations::isAnimatableProperty(property))
« no previous file with comments | « third_party/WebKit/Source/core/animation/StringKeyframe.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698