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

Unified Diff: Source/core/css/resolver/ScopedStyleResolver.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/ScopedStyleResolver.h
diff --git a/Source/core/css/resolver/ScopedStyleResolver.h b/Source/core/css/resolver/ScopedStyleResolver.h
index 623862dd8960a55e0ed29304207e20f59bbfd908..a7c01455bc845052f585881f978a5b85a0738dc2 100644
--- a/Source/core/css/resolver/ScopedStyleResolver.h
+++ b/Source/core/css/resolver/ScopedStyleResolver.h
@@ -57,7 +57,8 @@ public:
ScopedStyleResolver* parent() const;
public:
- const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* animationName);
+ const StyleRuleKeyframes* keyframeStylesForAnimation(const StringImpl* animationName) const;
shend 2015/01/05 06:29:54 The const version isn't used, so should we just re
dstockwell 2015/01/05 07:31:18 Yes, just remove them.
shend 2015/01/06 00:36:18 Done.
+ PassRefPtrWillBeRawPtr<StyleRuleKeyframes> keyframeStylesForAnimation(const StringImpl* animationName);
void addKeyframeStyle(PassRefPtrWillBeRawPtr<StyleRuleKeyframes>);
unsigned appendCSSStyleSheet(CSSStyleSheet*);

Powered by Google App Engine
This is Rietveld 408576698