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

Side by Side Diff: cc/animation/animation_host.h

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: 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
« no previous file with comments | « no previous file | cc/animation/animation_host.cc » ('j') | cc/animation/scroll_offset_animations.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_ANIMATION_ANIMATION_HOST_H_ 5 #ifndef CC_ANIMATION_ANIMATION_HOST_H_
6 #define CC_ANIMATION_ANIMATION_HOST_H_ 6 #define CC_ANIMATION_ANIMATION_HOST_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <unordered_map> 9 #include <unordered_map>
10 10
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 bool HasPotentiallyRunningFilterAnimation(ElementId element_id, 102 bool HasPotentiallyRunningFilterAnimation(ElementId element_id,
103 ElementListType list_type) const; 103 ElementListType list_type) const;
104 bool HasPotentiallyRunningOpacityAnimation(ElementId element_id, 104 bool HasPotentiallyRunningOpacityAnimation(ElementId element_id,
105 ElementListType list_type) const; 105 ElementListType list_type) const;
106 bool HasPotentiallyRunningTransformAnimation(ElementId element_id, 106 bool HasPotentiallyRunningTransformAnimation(ElementId element_id,
107 ElementListType list_type) const; 107 ElementListType list_type) const;
108 108
109 bool HasAnyAnimationTargetingProperty(ElementId element_id, 109 bool HasAnyAnimationTargetingProperty(ElementId element_id,
110 TargetProperty::Type property) const; 110 TargetProperty::Type property) const;
111 111
112 bool ScrollOffsetIsAnimatingOnImplOnly(ElementId element_id) const;
113
114 bool HasFilterAnimationThatInflatesBounds(ElementId element_id) const; 112 bool HasFilterAnimationThatInflatesBounds(ElementId element_id) const;
115 bool HasTransformAnimationThatInflatesBounds(ElementId element_id) const; 113 bool HasTransformAnimationThatInflatesBounds(ElementId element_id) const;
116 bool HasAnimationThatInflatesBounds(ElementId element_id) const; 114 bool HasAnimationThatInflatesBounds(ElementId element_id) const;
117 115
118 bool FilterAnimationBoundsForBox(ElementId element_id, 116 bool FilterAnimationBoundsForBox(ElementId element_id,
119 const gfx::BoxF& box, 117 const gfx::BoxF& box,
120 gfx::BoxF* bounds) const; 118 gfx::BoxF* bounds) const;
121 bool TransformAnimationBoundsForBox(ElementId element_id, 119 bool TransformAnimationBoundsForBox(ElementId element_id,
122 const gfx::BoxF& box, 120 const gfx::BoxF& box,
123 gfx::BoxF* bounds) const; 121 gfx::BoxF* bounds) const;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 195
198 bool supports_scroll_animations_; 196 bool supports_scroll_animations_;
199 bool animation_waiting_for_deletion_; 197 bool animation_waiting_for_deletion_;
200 198
201 DISALLOW_COPY_AND_ASSIGN(AnimationHost); 199 DISALLOW_COPY_AND_ASSIGN(AnimationHost);
202 }; 200 };
203 201
204 } // namespace cc 202 } // namespace cc
205 203
206 #endif // CC_ANIMATION_ANIMATION_HOST_H_ 204 #endif // CC_ANIMATION_ANIMATION_HOST_H_
OLDNEW
« no previous file with comments | « no previous file | cc/animation/animation_host.cc » ('j') | cc/animation/scroll_offset_animations.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698