OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_WM_APP_LIST_CONTROLLER_H_ | 5 #ifndef ASH_WM_APP_LIST_CONTROLLER_H_ |
6 #define ASH_WM_APP_LIST_CONTROLLER_H_ | 6 #define ASH_WM_APP_LIST_CONTROLLER_H_ |
7 | 7 |
8 #include "ash/launcher/launcher_icon_observer.h" | 8 #include "ash/launcher/launcher_icon_observer.h" |
9 #include "ash/shell_observer.h" | 9 #include "ash/shell_observer.h" |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 const gfx::Rect& old_bounds, | 104 const gfx::Rect& old_bounds, |
105 const gfx::Rect& new_bounds) OVERRIDE; | 105 const gfx::Rect& new_bounds) OVERRIDE; |
106 | 106 |
107 // ui::ImplicitAnimationObserver overrides: | 107 // ui::ImplicitAnimationObserver overrides: |
108 virtual void OnImplicitAnimationsCompleted() OVERRIDE; | 108 virtual void OnImplicitAnimationsCompleted() OVERRIDE; |
109 | 109 |
110 // views::WidgetObserver overrides: | 110 // views::WidgetObserver overrides: |
111 virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE; | 111 virtual void OnWidgetDestroying(views::Widget* widget) OVERRIDE; |
112 | 112 |
113 // ShellObserver overrides: | 113 // ShellObserver overrides: |
114 virtual void OnShelfAlignmentChanged(aura::RootWindow* root_window) OVERRIDE; | 114 virtual void OnShelfAlignmentChanged(aura::Window* root_window) OVERRIDE; |
115 | 115 |
116 // LauncherIconObserver overrides: | 116 // LauncherIconObserver overrides: |
117 virtual void OnLauncherIconPositionsChanged() OVERRIDE; | 117 virtual void OnLauncherIconPositionsChanged() OVERRIDE; |
118 | 118 |
119 // app_list::PaginationModelObserver overrides: | 119 // app_list::PaginationModelObserver overrides: |
120 virtual void TotalPagesChanged() OVERRIDE; | 120 virtual void TotalPagesChanged() OVERRIDE; |
121 virtual void SelectedPageChanged(int old_selected, int new_selected) OVERRIDE; | 121 virtual void SelectedPageChanged(int old_selected, int new_selected) OVERRIDE; |
122 virtual void TransitionStarted() OVERRIDE; | 122 virtual void TransitionStarted() OVERRIDE; |
123 virtual void TransitionChanged() OVERRIDE; | 123 virtual void TransitionChanged() OVERRIDE; |
124 | 124 |
(...skipping 11 matching lines...) Expand all Loading... |
136 // Whether should schedule snap back animation. | 136 // Whether should schedule snap back animation. |
137 bool should_snap_back_; | 137 bool should_snap_back_; |
138 | 138 |
139 DISALLOW_COPY_AND_ASSIGN(AppListController); | 139 DISALLOW_COPY_AND_ASSIGN(AppListController); |
140 }; | 140 }; |
141 | 141 |
142 } // namespace internal | 142 } // namespace internal |
143 } // namespace ash | 143 } // namespace ash |
144 | 144 |
145 #endif // ASH_WM_APP_LIST_CONTROLLER_H_ | 145 #endif // ASH_WM_APP_LIST_CONTROLLER_H_ |
OLD | NEW |