forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtest_shell_delegate.cc
171 lines (134 loc) · 5.05 KB
/
test_shell_delegate.cc
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
// 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 <string>
#include "ash/accessibility/default_accessibility_delegate.h"
#include "ash/capture_mode/test_capture_mode_delegate.h"
#include "ash/game_dashboard/test_game_dashboard_delegate.h"
#include "ash/glanceables/test_glanceables_delegate.h"
#include "ash/public/cpp/test/test_nearby_share_delegate.h"
#include "ash/public/cpp/test/test_saved_desk_delegate.h"
#include "ash/system/geolocation/test_geolocation_url_loader_factory.h"
#include "ash/system/test_system_sounds_delegate.h"
#include "ash/user_education/user_education_delegate.h"
#include "ash/wm/gestures/back_gesture/test_back_gesture_contextual_nudge_delegate.h"
#include "url/gurl.h"
namespace ash {
TestShellDelegate::TestShellDelegate() = default;
TestShellDelegate::~TestShellDelegate() = default;
bool TestShellDelegate::CanShowWindowForUser(const aura::Window* window) const {
return true;
}
std::unique_ptr<CaptureModeDelegate>
TestShellDelegate::CreateCaptureModeDelegate() const {
return std::make_unique<TestCaptureModeDelegate>();
}
std::unique_ptr<GameDashboardDelegate>
TestShellDelegate::CreateGameDashboardDelegate() const {
return std::make_unique<TestGameDashboardDelegate>();
}
std::unique_ptr<GlanceablesDelegate>
TestShellDelegate::CreateGlanceablesDelegate(
GlanceablesController* controller) const {
return std::make_unique<TestGlanceablesDelegate>();
}
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<UserEducationDelegate>
TestShellDelegate::CreateUserEducationDelegate() const {
return user_education_delegate_factory_
? user_education_delegate_factory_.Run()
: nullptr;
}
scoped_refptr<network::SharedURLLoaderFactory>
TestShellDelegate::GetGeolocationUrlLoaderFactory() const {
return static_cast<scoped_refptr<network::SharedURLLoaderFactory>>(
base::MakeRefCounted<TestGeolocationUrlLoaderFactory>());
}
bool TestShellDelegate::CanGoBack(gfx::NativeWindow window) const {
return can_go_back_;
}
void TestShellDelegate::SetTabScrubberChromeOSEnabled(bool enabled) {
tab_scrubber_enabled_ = enabled;
}
void TestShellDelegate::ShouldExitFullscreenBeforeLock(
ShouldExitFullscreenCallback callback) {
std::move(callback).Run(should_exit_fullscreen_before_lock_);
}
bool TestShellDelegate::ShouldWaitForTouchPressAck(gfx::NativeWindow window) {
return should_wait_for_touch_ack_;
}
int TestShellDelegate::GetBrowserWebUITabStripHeight() {
return 0;
}
void TestShellDelegate::BindMultiDeviceSetup(
mojo::PendingReceiver<multidevice_setup::mojom::MultiDeviceSetup>
receiver) {
if (multidevice_setup_binder_)
multidevice_setup_binder_.Run(std::move(receiver));
}
void TestShellDelegate::BindMultiCaptureService(
mojo::PendingReceiver<video_capture::mojom::MultiCaptureService> receiver) {
}
void TestShellDelegate::SetCanGoBack(bool can_go_back) {
can_go_back_ = can_go_back;
}
void TestShellDelegate::SetShouldExitFullscreenBeforeLock(
bool should_exit_fullscreen_before_lock) {
should_exit_fullscreen_before_lock_ = should_exit_fullscreen_before_lock;
}
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();
}
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