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

Side by Side Diff: cc/animation/element_animations.cc

Issue 1587073011: Plumb NotifyAnimationAborted from the compositor to blink animation delegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: initialize aborted_ in unittest Created 4 years, 11 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 | « cc/animation/element_animations.h ('k') | cc/animation/layer_animation_controller.cc » ('j') | no next file with comments »
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 #include "cc/animation/element_animations.h" 5 #include "cc/animation/element_animations.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "cc/animation/animation_host.h" 8 #include "cc/animation/animation_host.h"
9 #include "cc/animation/animation_player.h" 9 #include "cc/animation/animation_player.h"
10 #include "cc/animation/animation_registrar.h" 10 #include "cc/animation/animation_registrar.h"
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 base::TimeTicks monotonic_time, 252 base::TimeTicks monotonic_time,
253 Animation::TargetProperty target_property, 253 Animation::TargetProperty target_property,
254 int group) { 254 int group) {
255 for (PlayersListNode* node = players_list_->head(); 255 for (PlayersListNode* node = players_list_->head();
256 node != players_list_->end(); node = node->next()) { 256 node != players_list_->end(); node = node->next()) {
257 AnimationPlayer* player = node->value(); 257 AnimationPlayer* player = node->value();
258 player->NotifyAnimationFinished(monotonic_time, target_property, group); 258 player->NotifyAnimationFinished(monotonic_time, target_property, group);
259 } 259 }
260 } 260 }
261 261
262 void ElementAnimations::NotifyAnimationAborted(
263 base::TimeTicks monotonic_time,
264 Animation::TargetProperty target_property,
265 int group) {
266 for (PlayersListNode* node = players_list_->head();
267 node != players_list_->end(); node = node->next()) {
268 AnimationPlayer* player = node->value();
269 player->NotifyAnimationAborted(monotonic_time, target_property, group);
270 }
271 }
272
262 gfx::ScrollOffset ElementAnimations::ScrollOffsetForAnimation() const { 273 gfx::ScrollOffset ElementAnimations::ScrollOffsetForAnimation() const {
263 DCHECK(layer_animation_controller_); 274 DCHECK(layer_animation_controller_);
264 if (animation_host()) { 275 if (animation_host()) {
265 DCHECK(animation_host()->mutator_host_client()); 276 DCHECK(animation_host()->mutator_host_client());
266 return animation_host()->mutator_host_client()->GetScrollOffsetForAnimation( 277 return animation_host()->mutator_host_client()->GetScrollOffsetForAnimation(
267 layer_id()); 278 layer_id());
268 } 279 }
269 280
270 return gfx::ScrollOffset(); 281 return gfx::ScrollOffset();
271 } 282 }
272 283
273 } // namespace cc 284 } // namespace cc
OLDNEW
« no previous file with comments | « cc/animation/element_animations.h ('k') | cc/animation/layer_animation_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698