| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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/animation_registrar.h" | 5 #include "cc/animation/animation_registrar.h" |
| 6 | 6 |
| 7 #include "cc/animation/layer_animation_controller.h" | 7 #include "cc/animation/layer_animation_controller.h" |
| 8 | 8 |
| 9 namespace cc { | 9 namespace cc { |
| 10 | 10 |
| 11 AnimationRegistrar::AnimationRegistrar() {} | 11 AnimationRegistrar::AnimationRegistrar() : supports_scroll_animations_(false) { |
| 12 } |
| 12 | 13 |
| 13 AnimationRegistrar::~AnimationRegistrar() { | 14 AnimationRegistrar::~AnimationRegistrar() { |
| 14 AnimationControllerMap copy = all_animation_controllers_; | 15 AnimationControllerMap copy = all_animation_controllers_; |
| 15 for (AnimationControllerMap::iterator iter = copy.begin(); | 16 for (AnimationControllerMap::iterator iter = copy.begin(); |
| 16 iter != copy.end(); | 17 iter != copy.end(); |
| 17 ++iter) | 18 ++iter) |
| 18 (*iter).second->SetAnimationRegistrar(NULL); | 19 (*iter).second->SetAnimationRegistrar(NULL); |
| 19 } | 20 } |
| 20 | 21 |
| 21 scoped_refptr<LayerAnimationController> | 22 scoped_refptr<LayerAnimationController> |
| (...skipping 26 matching lines...) Expand all Loading... |
| 48 } | 49 } |
| 49 | 50 |
| 50 void AnimationRegistrar::UnregisterAnimationController( | 51 void AnimationRegistrar::UnregisterAnimationController( |
| 51 LayerAnimationController* controller) { | 52 LayerAnimationController* controller) { |
| 52 if (ContainsKey(all_animation_controllers_, controller->id())) | 53 if (ContainsKey(all_animation_controllers_, controller->id())) |
| 53 all_animation_controllers_.erase(controller->id()); | 54 all_animation_controllers_.erase(controller->id()); |
| 54 DidDeactivateAnimationController(controller); | 55 DidDeactivateAnimationController(controller); |
| 55 } | 56 } |
| 56 | 57 |
| 57 } // namespace cc | 58 } // namespace cc |
| OLD | NEW |