OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_COMMON_SHELF_WM_SHELF_H_ | 5 #ifndef ASH_COMMON_SHELF_WM_SHELF_H_ |
6 #define ASH_COMMON_SHELF_WM_SHELF_H_ | 6 #define ASH_COMMON_SHELF_WM_SHELF_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
11 #include "ash/common/shelf/shelf_layout_manager_observer.h" | 11 #include "ash/common/shelf/shelf_layout_manager_observer.h" |
12 #include "ash/common/shelf/shelf_types.h" | 12 #include "ash/public/cpp/shelf_types.h" |
13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
14 | 14 |
15 namespace gfx { | 15 namespace gfx { |
16 class Rect; | 16 class Rect; |
17 } | 17 } |
18 | 18 |
19 namespace ui { | 19 namespace ui { |
20 class GestureEvent; | 20 class GestureEvent; |
21 } | 21 } |
22 | 22 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 ShelfAutoHideBehavior auto_hide_behavior_ = SHELF_AUTO_HIDE_BEHAVIOR_NEVER; | 171 ShelfAutoHideBehavior auto_hide_behavior_ = SHELF_AUTO_HIDE_BEHAVIOR_NEVER; |
172 | 172 |
173 base::ObserverList<WmShelfObserver> observers_; | 173 base::ObserverList<WmShelfObserver> observers_; |
174 | 174 |
175 DISALLOW_COPY_AND_ASSIGN(WmShelf); | 175 DISALLOW_COPY_AND_ASSIGN(WmShelf); |
176 }; | 176 }; |
177 | 177 |
178 } // namespace ash | 178 } // namespace ash |
179 | 179 |
180 #endif // ASH_COMMON_SHELF_WM_SHELF_H_ | 180 #endif // ASH_COMMON_SHELF_WM_SHELF_H_ |
OLD | NEW |