From 3dbdc605f73b784f97fb38d2a9c931b90883db9f Mon Sep 17 00:00:00 2001 From: "enne@chromium.org" Date: Wed, 20 Mar 2013 01:42:32 +0000 Subject: cc: Chromify AnimationRegistrar R=jamesr@chromium.org BUG=none Review URL: https://chromiumcodereview.appspot.com/12617016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@189194 0039d316-1c4b-4281-b951-d872f2087c98 --- cc/animation/animation_registrar.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cc/animation/animation_registrar.h') diff --git a/cc/animation/animation_registrar.h b/cc/animation/animation_registrar.h index 5d1eb44..5bba0d1 100644 --- a/cc/animation/animation_registrar.h +++ b/cc/animation/animation_registrar.h @@ -18,7 +18,7 @@ class CC_EXPORT AnimationRegistrar { public: typedef base::hash_map AnimationControllerMap; - static scoped_ptr create() { + static scoped_ptr Create() { return make_scoped_ptr(new AnimationRegistrar()); } @@ -30,18 +30,18 @@ class CC_EXPORT AnimationRegistrar { // Registers the given animation controller as active. An active animation // controller is one that has a running animation that needs to be ticked. - void DidActivateAnimationController(LayerAnimationController*); + void DidActivateAnimationController(LayerAnimationController* controller); // Unregisters the given animation controller. When this happens, the // animation controller will no longer be ticked (since it's not active). It // is not an error to call this function with a deactivated controller. - void DidDeactivateAnimationController(LayerAnimationController*); + void DidDeactivateAnimationController(LayerAnimationController* controller); // Registers the given controller as alive. - void RegisterAnimationController(LayerAnimationController*); + void RegisterAnimationController(LayerAnimationController* controller); // Unregisters the given controller as alive. - void UnregisterAnimationController(LayerAnimationController*); + void UnregisterAnimationController(LayerAnimationController* controller); const AnimationControllerMap& active_animation_controllers() const { return active_animation_controllers_; -- cgit v1.1