| 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/window_tree_host_manager.h" |     5 #include "ash/display/window_tree_host_manager.h" | 
|     6  |     6  | 
|     7 #include <memory> |     7 #include <memory> | 
|     8  |     8  | 
|     9 #include "ash/aura/wm_window_aura.h" |     9 #include "ash/aura/wm_window_aura.h" | 
|    10 #include "ash/common/material_design/material_design_controller.h" |    10 #include "ash/common/material_design/material_design_controller.h" | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
|    23 #include "ash/test/test_shell_delegate.h" |    23 #include "ash/test/test_shell_delegate.h" | 
|    24 #include "ash/wm/window_state_aura.h" |    24 #include "ash/wm/window_state_aura.h" | 
|    25 #include "base/command_line.h" |    25 #include "base/command_line.h" | 
|    26 #include "ui/aura/client/focus_change_observer.h" |    26 #include "ui/aura/client/focus_change_observer.h" | 
|    27 #include "ui/aura/client/focus_client.h" |    27 #include "ui/aura/client/focus_client.h" | 
|    28 #include "ui/aura/env.h" |    28 #include "ui/aura/env.h" | 
|    29 #include "ui/aura/window_observer.h" |    29 #include "ui/aura/window_observer.h" | 
|    30 #include "ui/aura/window_tracker.h" |    30 #include "ui/aura/window_tracker.h" | 
|    31 #include "ui/aura/window_tree_host.h" |    31 #include "ui/aura/window_tree_host.h" | 
|    32 #include "ui/display/display.h" |    32 #include "ui/display/display.h" | 
 |    33 #include "ui/display/display_layout.h" | 
 |    34 #include "ui/display/display_layout_builder.h" | 
|    33 #include "ui/display/display_observer.h" |    35 #include "ui/display/display_observer.h" | 
|    34 #include "ui/display/manager/display_layout.h" |  | 
|    35 #include "ui/display/manager/display_layout_builder.h" |  | 
|    36 #include "ui/display/manager/display_layout_store.h" |    36 #include "ui/display/manager/display_layout_store.h" | 
|    37 #include "ui/display/manager/display_manager.h" |    37 #include "ui/display/manager/display_manager.h" | 
|    38 #include "ui/display/manager/managed_display_info.h" |    38 #include "ui/display/manager/managed_display_info.h" | 
|    39 #include "ui/display/screen.h" |    39 #include "ui/display/screen.h" | 
|    40 #include "ui/display/test/display_manager_test_api.h" |    40 #include "ui/display/test/display_manager_test_api.h" | 
|    41 #include "ui/events/event_handler.h" |    41 #include "ui/events/event_handler.h" | 
|    42 #include "ui/events/test/event_generator.h" |    42 #include "ui/events/test/event_generator.h" | 
|    43 #include "ui/views/mouse_watcher.h" |    43 #include "ui/views/mouse_watcher.h" | 
|    44 #include "ui/views/mouse_watcher_view_host.h" |    44 #include "ui/views/mouse_watcher_view_host.h" | 
|    45 #include "ui/views/view.h" |    45 #include "ui/views/view.h" | 
| (...skipping 1747 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1793       widget->GetNativeWindow()->GetRootWindow()); |  1793       widget->GetNativeWindow()->GetRootWindow()); | 
|  1794   event_generator.MoveMouseToCenterOf(widget->GetNativeWindow()); |  1794   event_generator.MoveMouseToCenterOf(widget->GetNativeWindow()); | 
|  1795  |  1795  | 
|  1796   UpdateDisplay("300x300"); |  1796   UpdateDisplay("300x300"); | 
|  1797   watcher.Stop(); |  1797   watcher.Stop(); | 
|  1798  |  1798  | 
|  1799   widget->CloseNow(); |  1799   widget->CloseNow(); | 
|  1800 } |  1800 } | 
|  1801  |  1801  | 
|  1802 }  // namespace ash |  1802 }  // namespace ash | 
| OLD | NEW |