1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_COMPOSITOR_CLOSURE_ANIMATION_OBSERVER_H_
6 #define UI_COMPOSITOR_CLOSURE_ANIMATION_OBSERVER_H_
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "ui/compositor/compositor_export.h"
11 #include "ui/compositor/layer_animation_observer.h"
15 // Runs a callback at the end of the animation. This observe also destroys
17 class COMPOSITOR_EXPORT ClosureAnimationObserver
18 : public ImplicitAnimationObserver
{
20 explicit ClosureAnimationObserver(const base::Closure
& closure
);
23 ~ClosureAnimationObserver() override
;
25 // ImplicitAnimationObserver:
26 void OnImplicitAnimationsCompleted() override
;
28 const base::Closure closure_
;
30 DISALLOW_COPY_AND_ASSIGN(ClosureAnimationObserver
);
35 #endif // UI_COMPOSITOR_CLOSURE_ANIMATION_OBSERVER_H_