OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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. | |
4 | |
5 #ifndef ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_ | |
6 #define ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_ | |
7 #pragma once | |
8 | |
9 #include "ash/ash_export.h" | |
10 | |
11 namespace ui { | |
12 class ImplicitAnimationObserver; | |
13 } // namespace ui | |
14 | |
15 namespace ash { | |
16 namespace internal { | |
17 | |
18 class ASH_EXPORT DragDropAnimationObserverClient { | |
sky
2012/01/27 17:54:10
I think I sent you on the wrong path here. There's
| |
19 public: | |
20 virtual void OnDragDropAnimationsCompleted( | |
21 ui::ImplicitAnimationObserver* observer) = 0; | |
22 | |
23 protected: | |
24 virtual ~DragDropAnimationObserverClient() {} | |
25 }; | |
26 | |
27 } // namespace internal | |
28 } // namespace ash | |
29 | |
30 #endif // ASH_DRAG_DROP_DRAG_DROP_ANIMATION_OBSERVER_CLIENT_H_ | |
31 | |
OLD | NEW |