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

Unified Diff: Source/core/css/CSSKeyframeRule.h

Issue 814083003: Update animation when changes in animation keyframes are detected. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move change counters to CSSAnimations Created 6 years 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: Source/core/css/CSSKeyframeRule.h
diff --git a/Source/core/css/CSSKeyframeRule.h b/Source/core/css/CSSKeyframeRule.h
index 991c1a16f26413128c8b0123f409a9c06b8be1cd..7776312703e87a5f987bed0ab1db941731dd75a7 100644
--- a/Source/core/css/CSSKeyframeRule.h
+++ b/Source/core/css/CSSKeyframeRule.h
@@ -66,6 +66,8 @@ public:
static PassOwnPtr<Vector<double> > createKeyList(CSSParserValueList*);
+ bool operator== (const StyleKeyframe& other) const { return keys() == keys() && cssText() == other.cssText(); }
dstockwell 2014/12/29 23:16:33 This seems expensive, as cssText() builds a new st
shend 2014/12/30 00:03:40 Removed.
+
private:
StyleKeyframe();

Powered by Google App Engine
This is Rietveld 408576698