Chromium Code Reviews| Index: ash/shelf/shelf_layout_manager_observer.h |
| diff --git a/ash/shelf/shelf_layout_manager_observer.h b/ash/shelf/shelf_layout_manager_observer.h |
| index 6209980e15fece324009df80480b9a6269e6f091..7d9ee26d55077bed6e6189f7c739b66bc18a758c 100644 |
| --- a/ash/shelf/shelf_layout_manager_observer.h |
| +++ b/ash/shelf/shelf_layout_manager_observer.h |
| @@ -6,6 +6,7 @@ |
| #define ASH_SHELF_SHELF_LAYOUT_MANAGER_OBSERVER_H_ |
| #include "ash/ash_export.h" |
| +#include "ash/shelf/background_animator.h" |
| #include "ash/shelf/shelf_types.h" |
| namespace aura { |
| @@ -30,6 +31,11 @@ class ASH_EXPORT ShelfLayoutManagerObserver { |
| // Called when the auto hide behavior is changed. |
| virtual void OnAutoHideBehaviorChanged(aura::Window* root_window, |
| ShelfAutoHideBehavior new_behavior) {} |
| + |
| + // Called when shelf background animation is started. |
| + virtual void OnBackgroundUpdated( |
| + ShelfBackgroundType background_type, |
| + internal::BackgroundAnimator::ChangeType change_type) {} |
|
oshima
2013/12/05 18:47:04
having internal class in non internal class'es met
varkha
2013/12/05 21:14:16
Done. I have moved the enum out of internal namesp
|
| }; |
| } // namespace ash |