OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "ash/common/shelf/shelf_widget.h" | 5 #include "ash/common/shelf/shelf_widget.h" |
6 | 6 |
7 #include "ash/common/material_design/material_design_controller.h" | 7 #include "ash/common/material_design/material_design_controller.h" |
| 8 #include "ash/common/shelf/shelf_constants.h" |
8 #include "ash/common/shelf/shelf_delegate.h" | 9 #include "ash/common/shelf/shelf_delegate.h" |
9 #include "ash/common/shelf/shelf_layout_manager.h" | 10 #include "ash/common/shelf/shelf_layout_manager.h" |
10 #include "ash/common/shelf/shelf_view.h" | 11 #include "ash/common/shelf/shelf_view.h" |
11 #include "ash/common/shelf/wm_shelf.h" | 12 #include "ash/common/shelf/wm_shelf.h" |
12 #include "ash/common/system/status_area_widget.h" | 13 #include "ash/common/system/status_area_widget.h" |
13 #include "ash/common/wm_root_window_controller.h" | 14 #include "ash/common/wm_root_window_controller.h" |
14 #include "ash/common/wm_shell.h" | 15 #include "ash/common/wm_shell.h" |
15 #include "ash/common/wm_window.h" | 16 #include "ash/common/wm_window.h" |
16 #include "ash/root_window_controller.h" | 17 #include "ash/root_window_controller.h" |
17 #include "ash/shell.h" | 18 #include "ash/shell.h" |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 } | 488 } |
488 | 489 |
489 TEST_P(ShelfWidgetTestWithDelegate, CreateLockedShelf) { | 490 TEST_P(ShelfWidgetTestWithDelegate, CreateLockedShelf) { |
490 // The auto hide state 'HIDDEN' is returned for any non-auto-hide behavior. | 491 // The auto hide state 'HIDDEN' is returned for any non-auto-hide behavior. |
491 TestCreateShelfWithInitialValues(SHELF_ALIGNMENT_BOTTOM_LOCKED, | 492 TestCreateShelfWithInitialValues(SHELF_ALIGNMENT_BOTTOM_LOCKED, |
492 SHELF_AUTO_HIDE_BEHAVIOR_NEVER, | 493 SHELF_AUTO_HIDE_BEHAVIOR_NEVER, |
493 SHELF_VISIBLE, SHELF_AUTO_HIDE_HIDDEN); | 494 SHELF_VISIBLE, SHELF_AUTO_HIDE_HIDDEN); |
494 } | 495 } |
495 | 496 |
496 } // namespace ash | 497 } // namespace ash |
OLD | NEW |