
Tested via --ash-debug-shortcuts and Ctrl+Alt+Shift+T Bug: 854704,760811 Change-Id: Ia3aadae89fcd50d95a84fdf7d275e97bc2e9e2e9 Reviewed-on: https://chromium-review.googlesource.com/1152230 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org> Reviewed-by: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#580021}
80 lines
2.5 KiB
C++
80 lines
2.5 KiB
C++
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "ash/shell_test_api.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "ash/root_window_controller.h"
|
|
#include "ash/shell.h"
|
|
#include "ash/system/power/backlights_forced_off_setter.h"
|
|
#include "ash/system/power/power_button_controller.h"
|
|
#include "ash/wm/tablet_mode/tablet_mode_controller.h"
|
|
#include "components/prefs/testing_pref_service.h"
|
|
#include "mojo/public/cpp/bindings/strong_binding.h"
|
|
|
|
namespace ash {
|
|
|
|
ShellTestApi::ShellTestApi() : ShellTestApi(Shell::Get()) {}
|
|
|
|
ShellTestApi::ShellTestApi(Shell* shell) : shell_(shell) {}
|
|
|
|
// static
|
|
void ShellTestApi::BindRequest(mojom::ShellTestApiRequest request) {
|
|
mojo::MakeStrongBinding(std::make_unique<ShellTestApi>(), std::move(request));
|
|
}
|
|
|
|
MessageCenterController* ShellTestApi::message_center_controller() {
|
|
return shell_->message_center_controller_.get();
|
|
}
|
|
|
|
SystemGestureEventFilter* ShellTestApi::system_gesture_event_filter() {
|
|
return shell_->system_gesture_filter_.get();
|
|
}
|
|
|
|
WorkspaceController* ShellTestApi::workspace_controller() {
|
|
return shell_->GetPrimaryRootWindowController()->workspace_controller();
|
|
}
|
|
|
|
ScreenPositionController* ShellTestApi::screen_position_controller() {
|
|
return shell_->screen_position_controller_.get();
|
|
}
|
|
|
|
NativeCursorManagerAsh* ShellTestApi::native_cursor_manager_ash() {
|
|
return shell_->native_cursor_manager_;
|
|
}
|
|
|
|
DragDropController* ShellTestApi::drag_drop_controller() {
|
|
return shell_->drag_drop_controller_.get();
|
|
}
|
|
|
|
PowerPrefs* ShellTestApi::power_prefs() {
|
|
return shell_->power_prefs_.get();
|
|
}
|
|
|
|
void ShellTestApi::OnLocalStatePrefServiceInitialized(
|
|
std::unique_ptr<PrefService> pref_service) {
|
|
shell_->OnLocalStatePrefServiceInitialized(std::move(pref_service));
|
|
}
|
|
|
|
void ShellTestApi::ResetPowerButtonControllerForTest() {
|
|
shell_->backlights_forced_off_setter_->ResetForTest();
|
|
shell_->power_button_controller_ = std::make_unique<PowerButtonController>(
|
|
shell_->backlights_forced_off_setter_.get());
|
|
}
|
|
|
|
void ShellTestApi::SimulateModalWindowOpenForTest(bool modal_window_open) {
|
|
shell_->simulate_modal_window_open_for_test_ = modal_window_open;
|
|
}
|
|
|
|
void ShellTestApi::IsSystemModalWindowOpen(IsSystemModalWindowOpenCallback cb) {
|
|
std::move(cb).Run(Shell::IsSystemModalWindowOpen());
|
|
}
|
|
|
|
void ShellTestApi::EnableTabletModeWindowManager(bool enable) {
|
|
shell_->tablet_mode_controller()->EnableTabletModeWindowManager(enable);
|
|
}
|
|
|
|
} // namespace ash
|