| 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_APP_LIST_APP_LIST_PRESENTER_DELEGATE_H_ | 5 #ifndef ASH_APP_LIST_APP_LIST_PRESENTER_DELEGATE_H_ |
| 6 #define ASH_APP_LIST_APP_LIST_PRESENTER_DELEGATE_H_ | 6 #define ASH_APP_LIST_APP_LIST_PRESENTER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 private: | 64 private: |
| 65 void ProcessLocatedEvent(ui::LocatedEvent* event); | 65 void ProcessLocatedEvent(ui::LocatedEvent* event); |
| 66 | 66 |
| 67 // ui::EventHandler overrides: | 67 // ui::EventHandler overrides: |
| 68 void OnMouseEvent(ui::MouseEvent* event) override; | 68 void OnMouseEvent(ui::MouseEvent* event) override; |
| 69 void OnGestureEvent(ui::GestureEvent* event) override; | 69 void OnGestureEvent(ui::GestureEvent* event) override; |
| 70 | 70 |
| 71 // KeyboardControllerObserver overrides: | 71 // KeyboardControllerObserver overrides: |
| 72 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; | 72 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; |
| 73 void OnKeyboardClosed() override {} |
| 73 | 74 |
| 74 // ShellObserver overrides: | 75 // ShellObserver overrides: |
| 75 void OnShelfAlignmentChanged(WmWindow* root_window) override; | 76 void OnShelfAlignmentChanged(WmWindow* root_window) override; |
| 76 void OnMaximizeModeStarted() override; | 77 void OnMaximizeModeStarted() override; |
| 77 void OnMaximizeModeEnded() override; | 78 void OnMaximizeModeEnded() override; |
| 78 | 79 |
| 79 // ShelfIconObserver overrides: | 80 // ShelfIconObserver overrides: |
| 80 void OnShelfIconPositionsChanged() override; | 81 void OnShelfIconPositionsChanged() override; |
| 81 | 82 |
| 82 // Whether the app list is visible (or in the process of being shown). | 83 // Whether the app list is visible (or in the process of being shown). |
| (...skipping 10 matching lines...) Expand all Loading... |
| 93 | 94 |
| 94 // Owned by its widget. | 95 // Owned by its widget. |
| 95 app_list::AppListView* view_ = nullptr; | 96 app_list::AppListView* view_ = nullptr; |
| 96 | 97 |
| 97 DISALLOW_COPY_AND_ASSIGN(AppListPresenterDelegate); | 98 DISALLOW_COPY_AND_ASSIGN(AppListPresenterDelegate); |
| 98 }; | 99 }; |
| 99 | 100 |
| 100 } // namespace ash | 101 } // namespace ash |
| 101 | 102 |
| 102 #endif // ASH_APP_LIST_APP_LIST_PRESENTER_DELEGATE_H_ | 103 #endif // ASH_APP_LIST_APP_LIST_PRESENTER_DELEGATE_H_ |
| OLD | NEW |