| 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 #include "ash/mus/bridge/wm_shell_mus.h" | 5 #include "ash/mus/bridge/wm_shell_mus.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "ash/common/accelerators/accelerator_controller.h" | 9 #include "ash/common/accelerators/accelerator_controller.h" |
| 10 #include "ash/common/display/display_info.h" | |
| 11 #include "ash/common/keyboard/keyboard_ui.h" | 10 #include "ash/common/keyboard/keyboard_ui.h" |
| 12 #include "ash/common/session/session_state_delegate.h" | 11 #include "ash/common/session/session_state_delegate.h" |
| 13 #include "ash/common/shell_delegate.h" | 12 #include "ash/common/shell_delegate.h" |
| 14 #include "ash/common/shell_observer.h" | 13 #include "ash/common/shell_observer.h" |
| 15 #include "ash/common/shell_window_ids.h" | 14 #include "ash/common/shell_window_ids.h" |
| 16 #include "ash/common/system/tray/default_system_tray_delegate.h" | 15 #include "ash/common/system/tray/default_system_tray_delegate.h" |
| 17 #include "ash/common/wm/maximize_mode/maximize_mode_event_handler.h" | 16 #include "ash/common/wm/maximize_mode/maximize_mode_event_handler.h" |
| 18 #include "ash/common/wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard
.h" | 17 #include "ash/common/wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard
.h" |
| 19 #include "ash/common/wm/mru_window_tracker.h" | 18 #include "ash/common/wm/mru_window_tracker.h" |
| 20 #include "ash/common/wm/window_cycle_event_filter.h" | 19 #include "ash/common/wm/window_cycle_event_filter.h" |
| 21 #include "ash/common/wm/window_resizer.h" | 20 #include "ash/common/wm/window_resizer.h" |
| 22 #include "ash/common/wm_activation_observer.h" | 21 #include "ash/common/wm_activation_observer.h" |
| 23 #include "ash/mus/accelerators/accelerator_controller_delegate_mus.h" | 22 #include "ash/mus/accelerators/accelerator_controller_delegate_mus.h" |
| 24 #include "ash/mus/accelerators/accelerator_controller_registrar.h" | 23 #include "ash/mus/accelerators/accelerator_controller_registrar.h" |
| 25 #include "ash/mus/bridge/wm_root_window_controller_mus.h" | 24 #include "ash/mus/bridge/wm_root_window_controller_mus.h" |
| 26 #include "ash/mus/bridge/wm_window_mus.h" | 25 #include "ash/mus/bridge/wm_window_mus.h" |
| 27 #include "ash/mus/container_ids.h" | 26 #include "ash/mus/container_ids.h" |
| 28 #include "ash/mus/drag_window_resizer.h" | 27 #include "ash/mus/drag_window_resizer.h" |
| 29 #include "ash/mus/root_window_controller.h" | 28 #include "ash/mus/root_window_controller.h" |
| 30 #include "ash/mus/window_manager.h" | 29 #include "ash/mus/window_manager.h" |
| 31 #include "ash/shared/immersive_fullscreen_controller.h" | 30 #include "ash/shared/immersive_fullscreen_controller.h" |
| 32 #include "base/memory/ptr_util.h" | 31 #include "base/memory/ptr_util.h" |
| 33 #include "components/user_manager/user_info_impl.h" | 32 #include "components/user_manager/user_info_impl.h" |
| 34 #include "services/ui/common/util.h" | 33 #include "services/ui/common/util.h" |
| 35 #include "services/ui/public/cpp/window.h" | 34 #include "services/ui/public/cpp/window.h" |
| 36 #include "services/ui/public/cpp/window_tree_client.h" | 35 #include "services/ui/public/cpp/window_tree_client.h" |
| 36 #include "ui/display/manager/managed_display_info.h" |
| 37 #include "ui/display/screen.h" | 37 #include "ui/display/screen.h" |
| 38 #include "ui/views/mus/pointer_watcher_event_router.h" | 38 #include "ui/views/mus/pointer_watcher_event_router.h" |
| 39 | 39 |
| 40 namespace ash { | 40 namespace ash { |
| 41 namespace mus { | 41 namespace mus { |
| 42 | 42 |
| 43 namespace { | 43 namespace { |
| 44 | 44 |
| 45 // TODO(jamescook): After ShellDelegate is ported to ash/common use | 45 // TODO(jamescook): After ShellDelegate is ported to ash/common use |
| 46 // ShellDelegate::CreateSessionStateDelegate() to construct the mus version | 46 // ShellDelegate::CreateSessionStateDelegate() to construct the mus version |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 } | 212 } |
| 213 | 213 |
| 214 WmWindow* WmShellMus::GetPrimaryRootWindow() { | 214 WmWindow* WmShellMus::GetPrimaryRootWindow() { |
| 215 return root_window_controllers_[0]->GetWindow(); | 215 return root_window_controllers_[0]->GetWindow(); |
| 216 } | 216 } |
| 217 | 217 |
| 218 WmWindow* WmShellMus::GetRootWindowForDisplayId(int64_t display_id) { | 218 WmWindow* WmShellMus::GetRootWindowForDisplayId(int64_t display_id) { |
| 219 return GetRootWindowControllerWithDisplayId(display_id)->GetWindow(); | 219 return GetRootWindowControllerWithDisplayId(display_id)->GetWindow(); |
| 220 } | 220 } |
| 221 | 221 |
| 222 const DisplayInfo& WmShellMus::GetDisplayInfo(int64_t display_id) const { | 222 const ui::ManagedDisplayInfo& WmShellMus::GetDisplayInfo( |
| 223 int64_t display_id) const { |
| 223 // TODO(mash): implement http://crbug.com/622480. | 224 // TODO(mash): implement http://crbug.com/622480. |
| 224 NOTIMPLEMENTED(); | 225 NOTIMPLEMENTED(); |
| 225 static DisplayInfo fake_info; | 226 static ui::ManagedDisplayInfo fake_info; |
| 226 return fake_info; | 227 return fake_info; |
| 227 } | 228 } |
| 228 | 229 |
| 229 bool WmShellMus::IsActiveDisplayId(int64_t display_id) const { | 230 bool WmShellMus::IsActiveDisplayId(int64_t display_id) const { |
| 230 // TODO(mash): implement http://crbug.com/622480. | 231 // TODO(mash): implement http://crbug.com/622480. |
| 231 NOTIMPLEMENTED(); | 232 NOTIMPLEMENTED(); |
| 232 return true; | 233 return true; |
| 233 } | 234 } |
| 234 | 235 |
| 235 display::Display WmShellMus::GetFirstDisplay() const { | 236 display::Display WmShellMus::GetFirstDisplay() const { |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 OnWindowActivated(gained_active, lost_active)); | 420 OnWindowActivated(gained_active, lost_active)); |
| 420 } | 421 } |
| 421 | 422 |
| 422 void WmShellMus::OnDidDestroyClient(ui::WindowTreeClient* client) { | 423 void WmShellMus::OnDidDestroyClient(ui::WindowTreeClient* client) { |
| 423 DCHECK_EQ(window_tree_client(), client); | 424 DCHECK_EQ(window_tree_client(), client); |
| 424 client->RemoveObserver(this); | 425 client->RemoveObserver(this); |
| 425 } | 426 } |
| 426 | 427 |
| 427 } // namespace mus | 428 } // namespace mus |
| 428 } // namespace ash | 429 } // namespace ash |
| OLD | NEW |