Roll src/breakpad/src 3ea146d:57c3d7c (svn 1405:1407)
[chromium-blink-merge.git] / ui / compositor / closure_animation_observer.h
blob1fd1cdf4f255ef2fc98823b0db471ed68c72aa74
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"
13 namespace ui {
15 // Runs a callback at the end of the animation. This observe also destroys
16 // itself afterwards.
17 class COMPOSITOR_EXPORT ClosureAnimationObserver
18 : public ImplicitAnimationObserver {
19 public:
20 explicit ClosureAnimationObserver(const base::Closure& closure);
22 private:
23 ~ClosureAnimationObserver() override;
25 // ImplicitAnimationObserver:
26 void OnImplicitAnimationsCompleted() override;
28 const base::Closure closure_;
30 DISALLOW_COPY_AND_ASSIGN(ClosureAnimationObserver);
33 } // namespace ui
35 #endif // UI_COMPOSITOR_CLOSURE_ANIMATION_OBSERVER_H_