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
|
// Copyright (c) 2015 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 "chrome/browser/ui/exclusive_access/mouse_lock_controller.h"
#include "base/metrics/histogram_macros.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_context.h"
#include "chrome/browser/ui/exclusive_access/exclusive_access_manager.h"
#include "chrome/browser/ui/exclusive_access/fullscreen_controller.h"
#include "components/content_settings/core/browser/host_content_settings_map.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/render_view_host.h"
#include "content/public/browser/render_widget_host.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
using content::RenderViewHost;
using content::WebContents;
namespace {
const char kBubbleReshowsHistogramName[] =
"ExclusiveAccess.BubbleReshowsPerSession.MouseLock";
} // namespace
MouseLockController::MouseLockController(ExclusiveAccessManager* manager)
: ExclusiveAccessControllerBase(manager),
mouse_lock_state_(MOUSELOCK_UNLOCKED),
fake_mouse_lock_for_test_(false) {}
MouseLockController::~MouseLockController() {
}
bool MouseLockController::IsMouseLocked() const {
return mouse_lock_state_ == MOUSELOCK_LOCKED ||
mouse_lock_state_ == MOUSELOCK_LOCKED_SILENTLY;
}
bool MouseLockController::IsMouseLockedSilently() const {
return mouse_lock_state_ == MOUSELOCK_LOCKED_SILENTLY;
}
void MouseLockController::RequestToLockMouse(WebContents* web_contents,
bool user_gesture,
bool last_unlocked_by_target) {
DCHECK(!IsMouseLocked());
NotifyMouseLockChange();
// Must have a user gesture to prevent misbehaving sites from constantly
// re-locking the mouse. Exceptions are when the page has unlocked
// (i.e. not the user), or if we're in tab fullscreen (user gesture required
// for that)
if (!last_unlocked_by_target && !user_gesture &&
!exclusive_access_manager()
->fullscreen_controller()
->IsFullscreenForTabOrPending(web_contents)) {
web_contents->GotResponseToLockMouseRequest(false);
return;
}
SetTabWithExclusiveAccess(web_contents);
// Lock mouse.
if (fake_mouse_lock_for_test_ ||
web_contents->GotResponseToLockMouseRequest(true)) {
if (last_unlocked_by_target) {
mouse_lock_state_ = MOUSELOCK_LOCKED_SILENTLY;
} else {
mouse_lock_state_ = MOUSELOCK_LOCKED;
}
} else {
SetTabWithExclusiveAccess(nullptr);
mouse_lock_state_ = MOUSELOCK_UNLOCKED;
}
exclusive_access_manager()->UpdateExclusiveAccessExitBubbleContent();
}
void MouseLockController::ExitExclusiveAccessIfNecessary() {
NotifyTabExclusiveAccessLost();
}
void MouseLockController::NotifyTabExclusiveAccessLost() {
WebContents* tab = exclusive_access_tab();
if (tab) {
UnlockMouse();
SetTabWithExclusiveAccess(nullptr);
mouse_lock_state_ = MOUSELOCK_UNLOCKED;
exclusive_access_manager()->UpdateExclusiveAccessExitBubbleContent();
}
}
void MouseLockController::RecordBubbleReshowsHistogram(
int bubble_reshow_count) {
UMA_HISTOGRAM_COUNTS_100(kBubbleReshowsHistogramName, bubble_reshow_count);
}
bool MouseLockController::HandleUserPressedEscape() {
if (IsMouseLocked()) {
ExitExclusiveAccessIfNecessary();
return true;
}
return false;
}
void MouseLockController::ExitExclusiveAccessToPreviousState() {
// Nothing to do for mouse lock.
}
void MouseLockController::LostMouseLock() {
RecordExitingUMA();
mouse_lock_state_ = MOUSELOCK_UNLOCKED;
SetTabWithExclusiveAccess(nullptr);
NotifyMouseLockChange();
exclusive_access_manager()->UpdateExclusiveAccessExitBubbleContent();
}
void MouseLockController::NotifyMouseLockChange() {
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_MOUSE_LOCK_CHANGED,
content::Source<MouseLockController>(this),
content::NotificationService::NoDetails());
}
void MouseLockController::UnlockMouse() {
WebContents* tab = exclusive_access_tab();
if (!tab)
return;
content::RenderWidgetHostView* mouse_lock_view = nullptr;
FullscreenController* fullscreen_controller =
exclusive_access_manager()->fullscreen_controller();
if ((fullscreen_controller->exclusive_access_tab() == tab) &&
fullscreen_controller->IsPrivilegedFullscreenForTab()) {
mouse_lock_view =
exclusive_access_tab()->GetFullscreenRenderWidgetHostView();
}
if (!mouse_lock_view) {
RenderViewHost* const rvh = exclusive_access_tab()->GetRenderViewHost();
if (rvh)
mouse_lock_view = rvh->GetWidget()->GetView();
}
if (mouse_lock_view)
mouse_lock_view->UnlockMouse();
}
|