| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/wm/maximize_mode/maximize_mode_controller.h" | 5 #include "ash/wm/maximize_mode/maximize_mode_controller.h" |
| 6 | 6 |
| 7 #include "ash/accelerometer/accelerometer_controller.h" | 7 #include "ash/accelerometer/accelerometer_controller.h" |
| 8 #include "ash/display/display_manager.h" | 8 #include "ash/display/display_manager.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/system/tray/system_tray_delegate.h" | 10 #include "ash/system/tray/system_tray_delegate.h" |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 115 |
| 116 MaximizeModeController* maximize_mode_controller() { | 116 MaximizeModeController* maximize_mode_controller() { |
| 117 return Shell::GetInstance()->maximize_mode_controller(); | 117 return Shell::GetInstance()->maximize_mode_controller(); |
| 118 } | 118 } |
| 119 | 119 |
| 120 void TriggerAccelerometerUpdate(const gfx::Vector3dF& base, | 120 void TriggerAccelerometerUpdate(const gfx::Vector3dF& base, |
| 121 const gfx::Vector3dF& lid) { | 121 const gfx::Vector3dF& lid) { |
| 122 maximize_mode_controller()->OnAccelerometerUpdated(base, lid); | 122 maximize_mode_controller()->OnAccelerometerUpdated(base, lid); |
| 123 } | 123 } |
| 124 | 124 |
| 125 bool IsMaximizeModeStarted() const { | 125 bool IsMaximizeModeStarted() { |
| 126 return Shell::GetInstance()->IsMaximizeModeWindowManagerEnabled(); | 126 return maximize_mode_controller()->IsMaximizeModeWindowManagerEnabled(); |
| 127 } | 127 } |
| 128 | 128 |
| 129 // Overrides the internal input device list for the current event targeters | 129 // Overrides the internal input device list for the current event targeters |
| 130 // with one which always returns true. | 130 // with one which always returns true. |
| 131 void InstallTestInternalDeviceList() { | 131 void InstallTestInternalDeviceList() { |
| 132 maximize_mode_controller()->event_blocker_->internal_devices_.reset( | 132 maximize_mode_controller()->event_blocker_->internal_devices_.reset( |
| 133 new TestInternalInputDeviceList); | 133 new TestInternalInputDeviceList); |
| 134 } | 134 } |
| 135 | 135 |
| 136 gfx::Display::Rotation GetInternalDisplayRotation() const { | 136 gfx::Display::Rotation GetInternalDisplayRotation() const { |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 EXPECT_EQ(gfx::Display::ROTATE_180, GetInternalDisplayRotation()); | 613 EXPECT_EQ(gfx::Display::ROTATE_180, GetInternalDisplayRotation()); |
| 614 | 614 |
| 615 // Exit maximize mode | 615 // Exit maximize mode |
| 616 TriggerAccelerometerUpdate(gfx::Vector3dF(0.0f, 0.0f, 1.0f), | 616 TriggerAccelerometerUpdate(gfx::Vector3dF(0.0f, 0.0f, 1.0f), |
| 617 gfx::Vector3dF(-1.0f, 0.0f, 0.0f)); | 617 gfx::Vector3dF(-1.0f, 0.0f, 0.0f)); |
| 618 EXPECT_FALSE(IsMaximizeModeStarted()); | 618 EXPECT_FALSE(IsMaximizeModeStarted()); |
| 619 EXPECT_EQ(gfx::Display::ROTATE_90, GetInternalDisplayRotation()); | 619 EXPECT_EQ(gfx::Display::ROTATE_90, GetInternalDisplayRotation()); |
| 620 } | 620 } |
| 621 | 621 |
| 622 } // namespace ash | 622 } // namespace ash |
| OLD | NEW |