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

Side by Side Diff: third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp

Issue 1896893004: Hook up style invalidation for CSS Paint API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@css-paint-register
Patch Set: rebase. Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 32
33 #include "core/StylePropertyShorthand.h" 33 #include "core/StylePropertyShorthand.h"
34 #include "core/animation/Animation.h" 34 #include "core/animation/Animation.h"
35 #include "core/animation/AnimationTimeline.h" 35 #include "core/animation/AnimationTimeline.h"
36 #include "core/animation/CompositorAnimations.h" 36 #include "core/animation/CompositorAnimations.h"
37 #include "core/animation/DeferredLegacyStyleInterpolation.h" 37 #include "core/animation/DeferredLegacyStyleInterpolation.h"
38 #include "core/animation/ElementAnimations.h" 38 #include "core/animation/ElementAnimations.h"
39 #include "core/animation/Interpolation.h" 39 #include "core/animation/Interpolation.h"
40 #include "core/animation/KeyframeEffectModel.h" 40 #include "core/animation/KeyframeEffectModel.h"
41 #include "core/animation/css/CSSAnimatableValueFactory.h" 41 #include "core/animation/css/CSSAnimatableValueFactory.h"
42 #include "core/animation/css/CSSPropertyEquality.h"
43 #include "core/css/CSSKeyframeRule.h" 42 #include "core/css/CSSKeyframeRule.h"
43 #include "core/css/CSSPropertyEquality.h"
44 #include "core/css/CSSPropertyMetadata.h" 44 #include "core/css/CSSPropertyMetadata.h"
45 #include "core/css/CSSValueList.h" 45 #include "core/css/CSSValueList.h"
46 #include "core/css/resolver/CSSToStyleMap.h" 46 #include "core/css/resolver/CSSToStyleMap.h"
47 #include "core/css/resolver/StyleResolver.h" 47 #include "core/css/resolver/StyleResolver.h"
48 #include "core/dom/Element.h" 48 #include "core/dom/Element.h"
49 #include "core/dom/PseudoElement.h" 49 #include "core/dom/PseudoElement.h"
50 #include "core/dom/StyleEngine.h" 50 #include "core/dom/StyleEngine.h"
51 #include "core/events/AnimationEvent.h" 51 #include "core/events/AnimationEvent.h"
52 #include "core/events/TransitionEvent.h" 52 #include "core/events/TransitionEvent.h"
53 #include "core/frame/UseCounter.h" 53 #include "core/frame/UseCounter.h"
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 } 868 }
869 869
870 DEFINE_TRACE(CSSAnimations) 870 DEFINE_TRACE(CSSAnimations)
871 { 871 {
872 visitor->trace(m_transitions); 872 visitor->trace(m_transitions);
873 visitor->trace(m_pendingUpdate); 873 visitor->trace(m_pendingUpdate);
874 visitor->trace(m_runningAnimations); 874 visitor->trace(m_runningAnimations);
875 } 875 }
876 876
877 } // namespace blink 877 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698