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 #include "ash/display/display_manager.h" | 5 #include "ash/display/display_manager.h" |
6 | 6 |
7 #include "ash/accelerators/accelerator_commands.h" | 7 #include "ash/accelerators/accelerator_commands_aura.h" |
8 #include "ash/common/ash_switches.h" | 8 #include "ash/common/ash_switches.h" |
9 #include "ash/common/display/display_info.h" | 9 #include "ash/common/display/display_info.h" |
10 #include "ash/common/material_design/material_design_controller.h" | 10 #include "ash/common/material_design/material_design_controller.h" |
11 #include "ash/common/wm/window_state.h" | 11 #include "ash/common/wm/window_state.h" |
12 #include "ash/display/display_configuration_controller.h" | 12 #include "ash/display/display_configuration_controller.h" |
13 #include "ash/display/display_layout_store.h" | 13 #include "ash/display/display_layout_store.h" |
14 #include "ash/display/display_util.h" | 14 #include "ash/display/display_util.h" |
15 #include "ash/display/mirror_window_controller.h" | 15 #include "ash/display/mirror_window_controller.h" |
16 #include "ash/display/window_tree_host_manager.h" | 16 #include "ash/display/window_tree_host_manager.h" |
17 #include "ash/screen_util.h" | 17 #include "ash/screen_util.h" |
(...skipping 2309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2327 const display::DisplayLayout& stored = | 2327 const display::DisplayLayout& stored = |
2328 layout_store->GetRegisteredDisplayLayout(list); | 2328 layout_store->GetRegisteredDisplayLayout(list); |
2329 | 2329 |
2330 EXPECT_EQ(id1, stored.placement_list[0].parent_display_id); | 2330 EXPECT_EQ(id1, stored.placement_list[0].parent_display_id); |
2331 EXPECT_EQ(id2, stored.placement_list[0].display_id); | 2331 EXPECT_EQ(id2, stored.placement_list[0].display_id); |
2332 } | 2332 } |
2333 | 2333 |
2334 #endif // OS_CHROMEOS | 2334 #endif // OS_CHROMEOS |
2335 | 2335 |
2336 } // namespace ash | 2336 } // namespace ash |
OLD | NEW |