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_WM_SHELF_ANIMATION_OBSERVER_CLIENT_H_ |
| 6 #define ASH_WM_SHELF_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 ShelfAnimationObserverClient { |
| 19 public: |
| 20 virtual void OnShelfAnimationsCompleted( |
| 21 ui::ImplicitAnimationObserver* observer) = 0; |
| 22 |
| 23 protected: |
| 24 virtual ~ShelfAnimationObserverClient() {} |
| 25 }; |
| 26 |
| 27 } // namespace internal |
| 28 } // namespace ash |
| 29 |
| 30 #endif // ASH_WM_SHELF_ANIMATION_OBSERVER_CLIENT_H_ |
| 31 |
OLD | NEW |