| 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 "components/arc/window_manager/arc_window_manager_bridge.h" | 5 #include "components/arc/window_manager/arc_window_manager_bridge.h" |
| 6 | 6 |
| 7 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" | 7 #include "ash/common/wm/maximize_mode/maximize_mode_controller.h" |
| 8 #include "ash/common/wm_shell.h" | 8 #include "ash/common/wm_shell.h" |
| 9 #include "ash/shell.h" | |
| 10 #include "base/logging.h" | 9 #include "base/logging.h" |
| 11 #include "components/arc/arc_bridge_service.h" | 10 #include "components/arc/arc_bridge_service.h" |
| 12 | 11 |
| 13 namespace arc { | 12 namespace arc { |
| 14 | 13 |
| 15 ArcWindowManagerBridge::ArcWindowManagerBridge(ArcBridgeService* bridge_service) | 14 ArcWindowManagerBridge::ArcWindowManagerBridge(ArcBridgeService* bridge_service) |
| 16 : ArcService(bridge_service), | 15 : ArcService(bridge_service), |
| 17 current_mode_(mojom::WindowManagerMode::MODE_NORMAL) { | 16 current_mode_(mojom::WindowManagerMode::MODE_NORMAL) { |
| 18 arc_bridge_service()->AddObserver(this); | 17 arc_bridge_service()->AddObserver(this); |
| 19 if (!ash::WmShell::HasInstance()) { | 18 if (!ash::WmShell::HasInstance()) { |
| 20 // The shell gets always loaded before ARC. If there is no shell it can only | 19 // The shell gets always loaded before ARC. If there is no shell it can only |
| 21 // mean that a unit test is running. | 20 // mean that a unit test is running. |
| 22 return; | 21 return; |
| 23 } | 22 } |
| 24 // Monitor any mode changes from now on. | 23 // Monitor any mode changes from now on. |
| 25 ash::WmShell::Get()->AddShellObserver(this); | 24 ash::WmShell::Get()->AddShellObserver(this); |
| 26 } | 25 } |
| 27 | 26 |
| 28 void ArcWindowManagerBridge::OnWindowManagerInstanceReady() { | 27 void ArcWindowManagerBridge::OnWindowManagerInstanceReady() { |
| 29 if (!ash::Shell::HasInstance()) { | 28 if (!ash::WmShell::HasInstance()) { |
| 30 // The shell gets always loaded before ARC. If there is no shell it can only | 29 // The shell gets always loaded before ARC. If there is no shell it can only |
| 31 // mean that a unit test is running. | 30 // mean that a unit test is running. |
| 32 return; | 31 return; |
| 33 } | 32 } |
| 34 ash::MaximizeModeController* controller = | 33 ash::MaximizeModeController* controller = |
| 35 ash::Shell::GetInstance()->maximize_mode_controller(); | 34 ash::WmShell::Get()->maximize_mode_controller(); |
| 36 if (!controller) | 35 if (!controller) |
| 37 return; | 36 return; |
| 38 | 37 |
| 39 // Set the initial mode configuration. | 38 // Set the initial mode configuration. |
| 40 SendWindowManagerModeChange(controller->IsMaximizeModeWindowManagerEnabled()); | 39 SendWindowManagerModeChange(controller->IsMaximizeModeWindowManagerEnabled()); |
| 41 } | 40 } |
| 42 | 41 |
| 43 ArcWindowManagerBridge::~ArcWindowManagerBridge() { | 42 ArcWindowManagerBridge::~ArcWindowManagerBridge() { |
| 44 if (ash::WmShell::HasInstance()) | 43 if (ash::WmShell::HasInstance()) |
| 45 ash::WmShell::Get()->RemoveShellObserver(this); | 44 ash::WmShell::Get()->RemoveShellObserver(this); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 66 arc_bridge_service()->window_manager_instance(); | 65 arc_bridge_service()->window_manager_instance(); |
| 67 if (!wm_instance || wm_mode == current_mode_) { | 66 if (!wm_instance || wm_mode == current_mode_) { |
| 68 return; | 67 return; |
| 69 } | 68 } |
| 70 VLOG(1) << "Sending window manager mode change to " << wm_mode; | 69 VLOG(1) << "Sending window manager mode change to " << wm_mode; |
| 71 wm_instance->OnWindowManagerModeChange(wm_mode); | 70 wm_instance->OnWindowManagerModeChange(wm_mode); |
| 72 current_mode_ = wm_mode; | 71 current_mode_ = wm_mode; |
| 73 } | 72 } |
| 74 | 73 |
| 75 } // namespace arc | 74 } // namespace arc |
| OLD | NEW |