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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/exclusive_access/exclusive_access_manager.h"
#include <utility>
#include "base/command_line.h"
#include "base/feature_list.h"
#include "base/metrics/histogram_functions.h"
#include "build/build_config.h"
#include "chrome/browser/app_mode/app_mode_utils.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_context.h"
#include "chrome/browser/ui/exclusive_access/fullscreen_controller.h"
#include "chrome/browser/ui/exclusive_access/pointer_lock_controller.h"
#include "chrome/browser/ui/ui_features.h"
#include "chrome/common/chrome_switches.h"
#include "components/input/native_web_keyboard_event.h"
#include "services/metrics/public/cpp/ukm_builders.h"
#include "services/metrics/public/cpp/ukm_recorder.h"
#include "ui/events/keycodes/keyboard_codes.h"
using content::WebContents;
namespace {
// Amount of time the user must press on Esc to make it a press-and-hold event.
constexpr base::TimeDelta kHoldEscapeTime = base::Milliseconds(1500);
// Amount of time the user must press on Esc to see the Exclusive Access Bubble
// showing up.
constexpr base::TimeDelta kShowExitBubbleTime = base::Milliseconds(500);
constexpr char kHistogramFullscreenLockStateAtEntryViaApi[] =
"WebCore.Fullscreen.LockStateAtEntryViaApi";
constexpr char kHistogramFullscreenLockStateAtEntryViaBrowserUi[] =
"WebCore.Fullscreen.LockStateAtEntryViaBrowserUi";
constexpr char kHistogramEscKeyPressedDownWithModifier[] =
"Browser.EscKeyPressedDownWithModifier";
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class LockState {
kUnlocked = 0,
kKeyboardLocked = 1,
kPointerLocked = 2,
kKeyboardAndPointerLocked = 3,
kMaxValue = kKeyboardAndPointerLocked,
};
// Check whether `event` is a kRawKeyDown type and doesn't have non-stateful
// modifiers (i.e. shift, ctrl etc.).
bool IsUnmodifiedEscKeyDownEvent(const input::NativeWebKeyboardEvent& event) {
if (event.GetType() != input::NativeWebKeyboardEvent::Type::kRawKeyDown) {
return false;
}
if (event.GetModifiers() & blink::WebInputEvent::kKeyModifiers) {
return false;
}
return true;
}
} // namespace
ExclusiveAccessManager::ExclusiveAccessManager(
ExclusiveAccessContext* exclusive_access_context)
: exclusive_access_context_(exclusive_access_context),
fullscreen_controller_(this),
keyboard_lock_controller_(this),
pointer_lock_controller_(this),
exclusive_access_controllers_({&fullscreen_controller_,
&keyboard_lock_controller_,
&pointer_lock_controller_}),
permission_manager_(exclusive_access_context) {}
ExclusiveAccessManager::~ExclusiveAccessManager() = default;
ExclusiveAccessBubbleType
ExclusiveAccessManager::GetExclusiveAccessExitBubbleType() const {
// In kiosk and exclusive app mode we always want to be fullscreen and do not
// want to show exit instructions for browser mode fullscreen.
bool app_mode = false;
#if !BUILDFLAG(IS_MAC) // App mode (kiosk) is not available on Mac yet.
app_mode = IsRunningInAppMode();
#endif
if (fullscreen_controller_.IsWindowFullscreenForTabOrPending()) {
if (!fullscreen_controller_.IsTabFullscreen()) {
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_FULLSCREEN_EXIT_INSTRUCTION;
}
if (pointer_lock_controller_.IsPointerLockedSilently()) {
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_NONE;
}
if (keyboard_lock_controller_.RequiresPressAndHoldEscToExit()) {
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_KEYBOARD_LOCK_EXIT_INSTRUCTION;
}
if (pointer_lock_controller_.IsPointerLocked()) {
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_FULLSCREEN_POINTERLOCK_EXIT_INSTRUCTION;
}
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_FULLSCREEN_EXIT_INSTRUCTION;
}
if (pointer_lock_controller_.IsPointerLockedSilently()) {
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_NONE;
}
if (pointer_lock_controller_.IsPointerLocked()) {
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_POINTERLOCK_EXIT_INSTRUCTION;
}
if (fullscreen_controller_.IsExtensionFullscreenOrPending()) {
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_EXTENSION_FULLSCREEN_EXIT_INSTRUCTION;
}
if (fullscreen_controller_.IsControllerInitiatedFullscreen() && !app_mode) {
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_BROWSER_FULLSCREEN_EXIT_INSTRUCTION;
}
return EXCLUSIVE_ACCESS_BUBBLE_TYPE_NONE;
}
void ExclusiveAccessManager::UpdateBubble(
ExclusiveAccessBubbleHideCallback first_hide_callback,
bool force_update) {
exclusive_access_context_->UpdateExclusiveAccessBubble(
{.origin = GetExclusiveAccessBubbleOrigin(),
.type = GetExclusiveAccessExitBubbleType(),
.force_update = force_update},
std::move(first_hide_callback));
}
url::Origin ExclusiveAccessManager::GetExclusiveAccessBubbleOrigin() const {
url::Origin result =
fullscreen_controller_.GetOriginForExclusiveAccessBubble();
if (result.opaque()) {
result = pointer_lock_controller_.GetOriginForExclusiveAccessBubble();
}
return result;
}
void ExclusiveAccessManager::RecordLockStateOnEnteringApiFullscreen() const {
RecordLockStateOnEnteringFullscreen(
kHistogramFullscreenLockStateAtEntryViaApi);
}
void ExclusiveAccessManager::RecordLockStateOnEnteringBrowserFullscreen()
const {
RecordLockStateOnEnteringFullscreen(
kHistogramFullscreenLockStateAtEntryViaBrowserUi);
}
void ExclusiveAccessManager::OnTabDeactivated(WebContents* web_contents) {
for (auto controller : exclusive_access_controllers_) {
controller->OnTabDeactivated(web_contents);
}
}
void ExclusiveAccessManager::OnTabDetachedFromView(WebContents* web_contents) {
for (auto controller : exclusive_access_controllers_) {
controller->OnTabDetachedFromView(web_contents);
}
}
void ExclusiveAccessManager::OnTabClosing(WebContents* web_contents) {
for (auto controller : exclusive_access_controllers_) {
controller->OnTabClosing(web_contents);
}
}
bool ExclusiveAccessManager::HandleUserKeyEvent(
const input::NativeWebKeyboardEvent& event) {
if (event.windows_key_code != ui::VKEY_ESCAPE) {
OnUserInput();
return false;
}
// When `features::kPressAndHoldEscToExitBrowserFullscreen` is enabled, the
// `esc_key_hold_timer_` starts on `kRawKeyDown` events, unless the key press
// event comes with a modifier key. This metrics records how often the timer
// does not start due to using the modifier key.
if (event.GetType() == input::NativeWebKeyboardEvent::Type::kRawKeyDown) {
base::UmaHistogramBoolean(
kHistogramEscKeyPressedDownWithModifier,
event.GetModifiers() != blink::WebInputEvent::kNoModifiers);
}
if (base::FeatureList::IsEnabled(
features::kPressAndHoldEscToExitBrowserFullscreen)) {
if (event.GetType() == input::NativeWebKeyboardEvent::Type::kKeyUp &&
esc_key_hold_timer_.IsRunning()) {
esc_key_hold_timer_.Stop();
show_exit_bubble_timer_.Stop();
for (auto controller : exclusive_access_controllers_) {
controller->HandleUserReleasedEscapeEarly();
}
} else if (IsUnmodifiedEscKeyDownEvent(event) &&
!esc_key_hold_timer_.IsRunning()) {
esc_key_hold_timer_.Start(
FROM_HERE, kHoldEscapeTime,
base::BindOnce(&ExclusiveAccessManager::HandleUserHeldEscape,
base::Unretained(this)));
show_exit_bubble_timer_.Start(
FROM_HERE, kShowExitBubbleTime,
base::BindOnce(&ExclusiveAccessManager::UpdateBubble,
base::Unretained(this), base::NullCallback(),
/*force_update=*/true));
}
// If the keyboard lock is enabled and requires press-and-hold Esc to exit,
// do not pass the event to other controllers. Returns false as we don't
// want to prevent the event from propagating to the webpage.
if (keyboard_lock_controller_.RequiresPressAndHoldEscToExit()) {
return false;
}
} else {
// Give the `keyboard_lock_controller_` first chance at handling the Esc
// event as there are specific UX behaviors that occur when that mode is
// active which are coordinated by that class. Return false as we don't
// want to prevent the event from propagating to the webpage.
if (keyboard_lock_controller_.HandleKeyEvent(event)) {
return false;
}
}
bool handled = false;
for (auto controller : exclusive_access_controllers_) {
if (controller->HandleUserPressedEscape()) {
handled = true;
}
}
return handled;
}
void ExclusiveAccessManager::OnUserInput() {
exclusive_access_context_->OnExclusiveAccessUserInput();
}
void ExclusiveAccessManager::ExitExclusiveAccess() {
for (auto controller : exclusive_access_controllers_) {
controller->ExitExclusiveAccessToPreviousState();
}
}
void ExclusiveAccessManager::HandleUserHeldEscape() {
for (auto controller : exclusive_access_controllers_) {
controller->HandleUserHeldEscape();
}
}
void ExclusiveAccessManager::RecordLockStateOnEnteringFullscreen(
const char histogram_name[]) const {
LockState lock_state = LockState::kUnlocked;
if (keyboard_lock_controller_.IsKeyboardLockActive()) {
if (pointer_lock_controller_.IsPointerLocked()) {
lock_state = LockState::kKeyboardAndPointerLocked;
} else {
lock_state = LockState::kKeyboardLocked;
}
} else if (pointer_lock_controller_.IsPointerLocked()) {
lock_state = LockState::kPointerLocked;
}
base::UmaHistogramEnumeration(histogram_name, lock_state);
if (fullscreen_controller_.exclusive_access_tab()) {
ukm::SourceId source_id = fullscreen_controller_.exclusive_access_tab()
->GetPrimaryMainFrame()
->GetPageUkmSourceId();
ukm::builders::Fullscreen_Enter(source_id)
.SetLockState(static_cast<int64_t>(lock_state))
.Record(ukm::UkmRecorder::Get());
}
}
|