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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 private: | 63 private: |
64 void ProcessLocatedEvent(ui::LocatedEvent* event); | 64 void ProcessLocatedEvent(ui::LocatedEvent* event); |
65 | 65 |
66 // ui::EventHandler overrides: | 66 // ui::EventHandler overrides: |
67 void OnMouseEvent(ui::MouseEvent* event) override; | 67 void OnMouseEvent(ui::MouseEvent* event) override; |
68 void OnGestureEvent(ui::GestureEvent* event) override; | 68 void OnGestureEvent(ui::GestureEvent* event) override; |
69 | 69 |
70 // KeyboardControllerObserver overrides: | 70 // KeyboardControllerObserver overrides: |
71 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; | 71 void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) override; |
| 72 void OnKeyboardHidden() override; |
72 | 73 |
73 // ShellObserver overrides: | 74 // ShellObserver overrides: |
74 void OnShelfAlignmentChanged(WmWindow* root_window) override; | 75 void OnShelfAlignmentChanged(WmWindow* root_window) override; |
75 void OnOverviewModeStarting() override; | 76 void OnOverviewModeStarting() override; |
76 void OnMaximizeModeStarted() override; | 77 void OnMaximizeModeStarted() override; |
77 void OnMaximizeModeEnded() override; | 78 void OnMaximizeModeEnded() override; |
78 | 79 |
79 // WmShelfObserver overrides: | 80 // WmShelfObserver overrides: |
80 void OnShelfIconPositionsChanged() override; | 81 void OnShelfIconPositionsChanged() override; |
81 | 82 |
(...skipping 11 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 |