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

Unified Diff: cc/animation/animation_host.cc

Issue 2006103004: Send takeover msg from MT to CC using the animation path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: jbroman nits 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/animation/animation_host.h ('k') | cc/animation/scroll_offset_animations.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/animation_host.cc
diff --git a/cc/animation/animation_host.cc b/cc/animation/animation_host.cc
index 69468ee5308838ae100aaf5c78da0465ce2b4e03..f03ae70a2d989a99ed30b9d67da7e27c0ea04e05 100644
--- a/cc/animation/animation_host.cc
+++ b/cc/animation/animation_host.cc
@@ -395,17 +395,6 @@ bool AnimationHost::HasAnyAnimationTargetingProperty(
return !!element_animations->GetAnimation(property);
}
-bool AnimationHost::ScrollOffsetIsAnimatingOnImplOnly(
- ElementId element_id) const {
- auto element_animations = GetElementAnimationsForElementId(element_id);
- if (!element_animations)
- return false;
-
- Animation* animation =
- element_animations->GetAnimation(TargetProperty::SCROLL_OFFSET);
- return animation && animation->is_impl_only();
-}
-
bool AnimationHost::HasFilterAnimationThatInflatesBounds(
ElementId element_id) const {
auto element_animations = GetElementAnimationsForElementId(element_id);
« no previous file with comments | « cc/animation/animation_host.h ('k') | cc/animation/scroll_offset_animations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698