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 UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_H_ | 5 #ifndef UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_H_ |
6 #define UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_H_ | 6 #define UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 14 matching lines...) Expand all Loading... |
25 } | 25 } |
26 | 26 |
27 namespace ui { | 27 namespace ui { |
28 class MenuModel; | 28 class MenuModel; |
29 } | 29 } |
30 | 30 |
31 namespace views { | 31 namespace views { |
32 | 32 |
33 class MenuButton; | 33 class MenuButton; |
34 class MenuItemView; | 34 class MenuItemView; |
35 class MenuModelAdapter; | |
36 class MenuRunnerHandler; | 35 class MenuRunnerHandler; |
37 class Widget; | 36 class Widget; |
38 | 37 |
39 namespace internal { | 38 namespace internal { |
40 class DisplayChangeListener; | 39 class DisplayChangeListener; |
41 class MenuRunnerImplInterface; | 40 class MenuRunnerImplInterface; |
42 } | 41 } |
43 | 42 |
44 namespace test { | 43 namespace test { |
45 class MenuRunnerTestAPI; | 44 class MenuRunnerTestAPI; |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 | 173 |
175 protected: | 174 protected: |
176 DisplayChangeListener() {} | 175 DisplayChangeListener() {} |
177 }; | 176 }; |
178 | 177 |
179 } // namespace internal | 178 } // namespace internal |
180 | 179 |
181 } // namespace views | 180 } // namespace views |
182 | 181 |
183 #endif // UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_H_ | 182 #endif // UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_H_ |
OLD | NEW |