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

Unified Diff: Source/core/css/resolver/StyleResolver.h

Issue 26382004: Web Animations CSS: Implement CSS Transitions backed on Web Animations model (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: fix logic for elapsedTime in event Created 7 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: Source/core/css/resolver/StyleResolver.h
diff --git a/Source/core/css/resolver/StyleResolver.h b/Source/core/css/resolver/StyleResolver.h
index 1b3156d62c6d1d8a309d777d9558899fc35fd59f..7330c5c12b7a4e921842b5b1fec169f942b85973 100644
--- a/Source/core/css/resolver/StyleResolver.h
+++ b/Source/core/css/resolver/StyleResolver.h
@@ -191,9 +191,6 @@ public:
RuleMatchingBehavior = MatchAllRules, RenderRegion* regionForStyling = 0);
// FIXME: The following logic related to animations and keyframes should be factored out of StyleResolver
- // The body of calculateCSSAnimationUpdate can move to CSSAnimations.cpp and take just const element, const style,
- // and const ScopedStyleTree
- void calculateCSSAnimationUpdate(StyleResolverState&);
void resolveKeyframes(Element*, const RenderStyle*, const AtomicString& animationName, TimingFunction* defaultTimingFunction, Vector<std::pair<KeyframeAnimationEffect::KeyframeVector, RefPtr<TimingFunction> > >&);
void keyframeStylesForAnimation(Element*, const RenderStyle*, KeyframeList&);
const StyleRuleKeyframes* matchScopedKeyframesRule(const Element*, const StringImpl* animationName);
@@ -317,6 +314,7 @@ private:
void applyProperties(StyleResolverState&, const StylePropertySet* properties, StyleRule*, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelistNone);
template <StyleApplicationPass pass>
bool applyAnimatedProperties(StyleResolverState&, const DocumentTimeline*);
+ void applyTransitionedProperties(StyleResolverState&);
void matchPageRules(MatchResult&, RuleSet*, bool isLeftPage, bool isFirstPage, const String& pageName);
void matchPageRulesForList(Vector<StyleRulePage*>& matchedRules, const Vector<StyleRulePage*>&, bool isLeftPage, bool isFirstPage, const String& pageName);
void collectViewportRules();

Powered by Google App Engine
This is Rietveld 408576698