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

Unified Diff: Source/core/animation/AnimationStack.cpp

Issue 928103002: Remove some unused functions in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: git cl try Created 5 years, 10 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
« no previous file with comments | « Source/core/animation/AnimationStack.h ('k') | Source/core/animation/animatable/AnimatableColor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationStack.cpp
diff --git a/Source/core/animation/AnimationStack.cpp b/Source/core/animation/AnimationStack.cpp
index 178d1d9013beb52df4df83a6bc2de26632b46eca..7d6ecfebfba544f6d05916be92de43f29bdada55 100644
--- a/Source/core/animation/AnimationStack.cpp
+++ b/Source/core/animation/AnimationStack.cpp
@@ -71,15 +71,6 @@ AnimationStack::AnimationStack()
{
}
-bool AnimationStack::affects(CSSPropertyID property) const
-{
- for (const auto& effect : m_effects) {
- if (effect->animation() && effect->animation()->affects(property))
- return true;
- }
- return false;
-}
-
bool AnimationStack::hasActiveAnimationsOnCompositor(CSSPropertyID property) const
{
for (const auto& effect : m_effects) {
« no previous file with comments | « Source/core/animation/AnimationStack.h ('k') | Source/core/animation/animatable/AnimatableColor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698