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

Unified Diff: Source/core/css/resolver/StyleResolver.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: Detect when style changes to a different object Created 5 years, 11 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: Source/core/css/resolver/StyleResolver.h
diff --git a/Source/core/css/resolver/StyleResolver.h b/Source/core/css/resolver/StyleResolver.h
index 25a3621f59131e9cc49e17334d717d51c0dc0eb4..615ee8bb14381f0acb6c3ed325d19de6be05c7c6 100644
--- a/Source/core/css/resolver/StyleResolver.h
+++ b/Source/core/css/resolver/StyleResolver.h
@@ -130,7 +130,8 @@ public:
SelectorFilter& selectorFilter() { return m_selectorFilter; }
- const StyleRuleKeyframes* findKeyframesRule(const Element*, const AtomicString& animationName);
+ const StyleRuleKeyframes* findKeyframesRule(const Element*, const AtomicString& animationName) const;
shend 2015/01/05 06:29:54 Same as in StyleResolver, the const version isn't
+ PassRefPtrWillBeRawPtr<StyleRuleKeyframes> findKeyframesRule(const Element*, const AtomicString& animationName);
// These methods will give back the set of rules that matched for a given element (or a pseudo-element).
enum CSSRuleFilter {

Powered by Google App Engine
This is Rietveld 408576698