1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/test_shell_delegate.h"
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include "ash/accelerators/test_accelerator_prefs_delegate.h"
#include "ash/accessibility/default_accessibility_delegate.h"
#include "ash/api/tasks/tasks_delegate.h"
#include "ash/api/tasks/test_tasks_delegate.h"
#include "ash/capture_mode/test_capture_mode_delegate.h"
#include "ash/clipboard/test_support/test_clipboard_history_controller_delegate_impl.h"
#include "ash/game_dashboard/test_game_dashboard_delegate.h"
#include "ash/public/cpp/tab_strip_delegate.h"
#include "ash/public/cpp/test/test_coral_delegate.h"
#include "ash/public/cpp/test/test_nearby_share_delegate.h"
#include "ash/public/cpp/test/test_saved_desk_delegate.h"
#include "ash/public/cpp/test/test_tab_strip_delegate.h"
#include "ash/scanner/fake_scanner_delegate.h"
#include "ash/system/focus_mode/test/test_focus_mode_delegate.h"
#include "ash/system/geolocation/test_geolocation_url_loader_factory.h"
#include "ash/system/test_system_sounds_delegate.h"
#include "ash/user_education/mock_user_education_delegate.h"
#include "ash/user_education/user_education_delegate.h"
#include "ash/wm/gestures/back_gesture/test_back_gesture_contextual_nudge_delegate.h"
#include "ash/wm/overview/overview_controller.h"
#include "ash/wm/overview/overview_metrics.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "url/gurl.h"
namespace ash {
TestShellDelegate::TestShellDelegate()
: url_loader_factory_(
base::MakeRefCounted<network::TestSharedURLLoaderFactory>()) {}
TestShellDelegate::~TestShellDelegate() = default;
bool TestShellDelegate::CanShowWindowForUser(const aura::Window* window) const {
return true;
}
std::unique_ptr<CaptureModeDelegate>
TestShellDelegate::CreateCaptureModeDelegate(PrefService* local_state) const {
return std::make_unique<TestCaptureModeDelegate>();
}
std::unique_ptr<ClipboardHistoryControllerDelegate>
TestShellDelegate::CreateClipboardHistoryControllerDelegate() const {
return std::make_unique<TestClipboardHistoryControllerDelegateImpl>();
}
std::unique_ptr<CoralDelegate> TestShellDelegate::CreateCoralDelegate() const {
return std::make_unique<TestCoralDelegate>();
}
std::unique_ptr<GameDashboardDelegate>
TestShellDelegate::CreateGameDashboardDelegate() const {
return std::make_unique<TestGameDashboardDelegate>();
}
std::unique_ptr<AcceleratorPrefsDelegate>
TestShellDelegate::CreateAcceleratorPrefsDelegate() const {
return std::make_unique<TestAcceleratorPrefsDelegate>();
}
AccessibilityDelegate* TestShellDelegate::CreateAccessibilityDelegate() {
return new DefaultAccessibilityDelegate;
}
std::unique_ptr<BackGestureContextualNudgeDelegate>
TestShellDelegate::CreateBackGestureContextualNudgeDelegate(
BackGestureContextualNudgeController* controller) {
return std::make_unique<TestBackGestureContextualNudgeDelegate>(controller);
}
std::unique_ptr<MediaNotificationProvider>
TestShellDelegate::CreateMediaNotificationProvider() {
return nullptr;
}
std::unique_ptr<NearbyShareDelegate>
TestShellDelegate::CreateNearbyShareDelegate(
NearbyShareController* controller) const {
return std::make_unique<TestNearbyShareDelegate>();
}
std::unique_ptr<SavedDeskDelegate> TestShellDelegate::CreateSavedDeskDelegate()
const {
return std::make_unique<TestSavedDeskDelegate>();
}
std::unique_ptr<SystemSoundsDelegate>
TestShellDelegate::CreateSystemSoundsDelegate() const {
return std::make_unique<TestSystemSoundsDelegate>();
}
std::unique_ptr<api::TasksDelegate> TestShellDelegate::CreateTasksDelegate()
const {
return std::make_unique<api::TestTasksDelegate>();
}
std::unique_ptr<TabStripDelegate> TestShellDelegate::CreateTabStripDelegate()
const {
return std::make_unique<TestTabStripDelegate>();
}
std::unique_ptr<FocusModeDelegate> TestShellDelegate::CreateFocusModeDelegate()
const {
return std::make_unique<TestFocusModeDelegate>();
}
std::unique_ptr<UserEducationDelegate>
TestShellDelegate::CreateUserEducationDelegate() const {
return user_education_delegate_factory_
? user_education_delegate_factory_.Run()
: std::make_unique<testing::NiceMock<MockUserEducationDelegate>>();
}
std::unique_ptr<ScannerDelegate> TestShellDelegate::CreateScannerDelegate()
const {
return std::make_unique<FakeScannerDelegate>();
}
scoped_refptr<network::SharedURLLoaderFactory>
TestShellDelegate::GetBrowserProcessUrlLoaderFactory() const {
return url_loader_factory_;
}
bool TestShellDelegate::CanGoBack(gfx::NativeWindow window) const {
return can_go_back_;
}
void TestShellDelegate::SetTabScrubberEnabled(bool enabled) {
tab_scrubber_enabled_ = enabled;
}
bool TestShellDelegate::ShouldWaitForTouchPressAck(gfx::NativeWindow window) {
return should_wait_for_touch_ack_;
}
int TestShellDelegate::GetBrowserWebUITabStripHeight() {
return 0;
}
void TestShellDelegate::OpenMultitaskingSettings() {
// Opening the settings page will cause a window activation and end overview.
// Call `EndOverview()` to simulate opening the settings page.
OverviewController::Get()->EndOverview(OverviewEndAction::kTests);
}
void TestShellDelegate::BindMultiDeviceSetup(
mojo::PendingReceiver<multidevice_setup::mojom::MultiDeviceSetup>
receiver) {
if (multidevice_setup_binder_)
multidevice_setup_binder_.Run(std::move(receiver));
}
void TestShellDelegate::SetCanGoBack(bool can_go_back) {
can_go_back_ = can_go_back;
}
void TestShellDelegate::SetShouldWaitForTouchAck(
bool should_wait_for_touch_ack) {
should_wait_for_touch_ack_ = should_wait_for_touch_ack;
}
bool TestShellDelegate::IsSessionRestoreInProgress() const {
return session_restore_in_progress_;
}
void TestShellDelegate::SetSessionRestoreInProgress(bool in_progress) {
session_restore_in_progress_ = in_progress;
}
bool TestShellDelegate::IsLoggingRedirectDisabled() const {
return false;
}
base::FilePath TestShellDelegate::GetPrimaryUserDownloadsFolder() const {
return base::FilePath();
}
void TestShellDelegate::OpenFeedbackDialog(
ShellDelegate::FeedbackSource source,
const std::string& description_template,
const std::string& category_tag) {
++open_feedback_dialog_call_count_;
}
bool TestShellDelegate::SendSpecializedFeatureFeedback(
const AccountId& account_id,
int product_id,
std::string description,
std::optional<std::string> image,
std::optional<std::string> image_mime_type) {
return send_specialized_feature_feedback_callback_
? send_specialized_feature_feedback_callback_.Run(
account_id, product_id, std::move(description),
std::move(image), std::move(image_mime_type))
: true;
}
const GURL& TestShellDelegate::GetLastCommittedURLForWindowIfAny(
aura::Window* window) {
return last_committed_url_;
}
void TestShellDelegate::SetLastCommittedURLForWindow(const GURL& url) {
last_committed_url_ = url;
}
version_info::Channel TestShellDelegate::GetChannel() {
return channel_;
}
std::string TestShellDelegate::GetVersionString() {
return version_string_;
}
} // namespace ash
|