| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 virtual void OnRootWindowResized(const aura::RootWindow* root, | 88 virtual void OnRootWindowResized(const aura::RootWindow* root, |
| 89 const gfx::Size& old_size) OVERRIDE; | 89 const gfx::Size& old_size) OVERRIDE; |
| 90 | 90 |
| 91 // ui::ImplicitAnimationObserver overrides: | 91 // ui::ImplicitAnimationObserver overrides: |
| 92 virtual void OnImplicitAnimationsCompleted() OVERRIDE; | 92 virtual void OnImplicitAnimationsCompleted() OVERRIDE; |
| 93 | 93 |
| 94 // views::WidgetObserver overrides: | 94 // views::WidgetObserver overrides: |
| 95 virtual void OnWidgetClosing(views::Widget* widget) OVERRIDE; | 95 virtual void OnWidgetClosing(views::Widget* widget) OVERRIDE; |
| 96 | 96 |
| 97 // ShellObserver overrides: | 97 // ShellObserver overrides: |
| 98 virtual void OnShelfAlignmentChanged() OVERRIDE; | 98 virtual void OnShelfAlignmentChanged(aura::RootWindow* root_window) OVERRIDE; |
| 99 | 99 |
| 100 // LauncherIconObserver overrides: | 100 // LauncherIconObserver overrides: |
| 101 virtual void OnLauncherIconPositionsChanged() OVERRIDE; | 101 virtual void OnLauncherIconPositionsChanged() OVERRIDE; |
| 102 | 102 |
| 103 // app_list::PaginationModelObserver overrides: | 103 // app_list::PaginationModelObserver overrides: |
| 104 virtual void TotalPagesChanged() OVERRIDE; | 104 virtual void TotalPagesChanged() OVERRIDE; |
| 105 virtual void SelectedPageChanged(int old_selected, int new_selected) OVERRIDE; | 105 virtual void SelectedPageChanged(int old_selected, int new_selected) OVERRIDE; |
| 106 virtual void TransitionChanged() OVERRIDE; | 106 virtual void TransitionChanged() OVERRIDE; |
| 107 | 107 |
| 108 scoped_ptr<app_list::PaginationModel> pagination_model_; | 108 scoped_ptr<app_list::PaginationModel> pagination_model_; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 119 // Whether should schedule snap back animation. | 119 // Whether should schedule snap back animation. |
| 120 bool should_snap_back_; | 120 bool should_snap_back_; |
| 121 | 121 |
| 122 DISALLOW_COPY_AND_ASSIGN(AppListController); | 122 DISALLOW_COPY_AND_ASSIGN(AppListController); |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 } // namespace internal | 125 } // namespace internal |
| 126 } // namespace ash | 126 } // namespace ash |
| 127 | 127 |
| 128 #endif // ASH_WM_APP_LIST_CONTROLLER_H_ | 128 #endif // ASH_WM_APP_LIST_CONTROLLER_H_ |
| OLD | NEW |