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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
// 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.
#ifndef CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_
#define CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_
#include <list>
#include <memory>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/time/time.h"
#include "base/timer/elapsed_timer.h"
#include "components/metrics/metrics_provider.h"
#include "content/browser/accessibility/scoped_mode_collection.h"
#include "content/common/content_export.h"
#include "content/public/browser/browser_accessibility_state.h"
#include "content/public/browser/render_widget_host.h"
#include "ui/accessibility/ax_mode.h"
#include "ui/accessibility/platform/assistive_tech.h"
#include "ui/accessibility/platform/ax_platform.h"
namespace content {
struct FocusedNodeDetails;
class WebContentsImpl;
// The BrowserAccessibilityState class is used to determine if Chrome should be
// customized for users with assistive technology, such as screen readers. We
// modify the behavior of certain user interfaces to provide a better experience
// for screen reader users. The way we detect a screen reader program is
// different for each platform.
//
// Screen Reader Detection
// (1) On Windows, many screen reader detection mechanisms will give false
// positives, such as relying on the SPI_GETSCREENREADER system parameter.
// In Chrome, we attempt to dynamically detect a MSAA client screen reader
// by calling NotifyWinEvent in NativeWidgetWin with a custom ID and wait
// to see if the ID is requested by a subsequent call to WM_GETOBJECT.
// (2) On macOS, we dynamically detect if VoiceOver is running by Key-Value
// Observing changes to the "voiceOverEnabled" property in NSWorkspace. We
// also monitor the undocumented accessibility attribute
// @"AXEnhancedUserInterface", which is set by other assistive
// technologies.
class CONTENT_EXPORT BrowserAccessibilityStateImpl
: public BrowserAccessibilityState,
public ui::AXPlatform::Delegate,
public content::RenderWidgetHost::InputEventObserver,
public ScopedModeCollection::Delegate {
public:
BrowserAccessibilityStateImpl(const BrowserAccessibilityStateImpl&) = delete;
BrowserAccessibilityStateImpl& operator=(
const BrowserAccessibilityStateImpl&) = delete;
~BrowserAccessibilityStateImpl() override;
// Returns the single process-wide instance.
static BrowserAccessibilityStateImpl* GetInstance();
// Returns a new instance. Only one instance may be live in the process at any
// time.
static std::unique_ptr<BrowserAccessibilityStateImpl> Create();
// BrowserAccessibilityState implementation.
ui::AXMode GetAccessibilityMode() override;
ui::AXMode GetAccessibilityModeForBrowserContext(
BrowserContext* browser_context) override;
// Any currently running assistive tech that should prevent accessibility from
// being auto-disabled.
ui::AssistiveTech ActiveAssistiveTech() const override;
void SetPerformanceFilteringAllowed(bool enabled) override;
bool IsPerformanceFilteringAllowed() override;
base::CallbackListSubscription RegisterFocusChangedCallback(
FocusChangedCallback callback) override;
std::unique_ptr<ScopedAccessibilityMode> CreateScopedModeForProcess(
ui::AXMode mode) override;
std::unique_ptr<ScopedAccessibilityMode> CreateScopedModeForBrowserContext(
BrowserContext* browser_context,
ui::AXMode mode) override;
std::unique_ptr<ScopedAccessibilityMode> CreateScopedModeForWebContents(
WebContents* web_contents,
ui::AXMode mode) override;
void SetAXModeChangeAllowed(bool allowed) override;
bool IsAXModeChangeAllowed() const override;
void SetActivationFromPlatformEnabled(bool enabled) override;
bool IsActivationFromPlatformEnabled() override;
bool IsAccessibilityPerformanceMeasurementExperimentActive() const override;
void NotifyWebContentsPreferencesChanged() const override;
// ui::AXPlatform::Delegate:
void OnMinimalPropertiesUsed() override;
void OnPropertiesUsedInBrowserUI() override;
void OnPropertiesUsedInWebContent() override;
void OnInlineTextBoxesUsedInWebContent() override;
void OnExtendedPropertiesUsedInWebContent() override;
void OnHTMLAttributesUsed() override;
void OnActionFromAssistiveTech() override;
// content::RenderWidgetHost::InputEventObserver:
void OnInputEvent(const RenderWidgetHost& widget,
const blink::WebInputEvent& event) override;
// The global accessibility mode is automatically enabled based on
// usage of accessibility APIs. When we detect a significant amount
// of user inputs within a certain time period, but no accessibility
// API usage, we automatically disable accessibility.
void OnUserInputEvent();
// Notifies listeners that the focused element changed inside a WebContents.
void OnFocusChangedInPage(const FocusedNodeDetails& details);
// Return true if auto-disable should be blocked.
bool ShouldBlockAutoDisable();
// Signal to BrowserAccessibilityState that a page navigation has occurred.
void OnPageNavigationComplete();
// Sets the initial accessibility mode for `web_contents` if it is not
// hidden or if ProgressiveAccessibility is not enabled.
void OnWebContentsInitialized(WebContentsImpl* web_contents);
// Applies the effective accessibility mode for `web_contents` if
// ProgressiveAccessibility is enabled.
void OnWebContentsRevealed(WebContentsImpl* web_contents);
// Tracks `web_contents` for the sake of disabling accessibility later if
// ProgressiveAccessibility is enabled and disable_on_hide is selected. A
// previously-hidden WebContents becomes eligible for disablement if it is
// not among the last five to be hidden once it has been hidden for at least
// five minutes.
void OnWebContentsHidden(WebContentsImpl* web_contents);
// A hidden WebContents is guaranteed to retain its accessibility state when
// the ProgressiveAccessibility feature is in disable_on_hide mode for at
// least five minutes, plus or minus twenty seconds.
static base::TimeDelta GetRandomizedDisableDelay();
static base::TimeDelta GetMaxDisableDelay();
// The number of recently-hidden WebContents that will not have accessibility
// disabled if the ProgressiveAccessibility feature is on in disable_on_hide
// mode.
static constexpr int kMaxPreservedWebContents = 5;
protected:
BrowserAccessibilityStateImpl();
// Notifies the instance that `assistive_tech` is the most significant of any
// assistive technologies discovered. AXPlatform observers are notified if
// `assistive_tech` differs from the most recent discovery. Called by
// subclasses when they detect a the presence of assistive tech via
// platform-specific means.
void OnAssistiveTechFound(ui::AssistiveTech assistive_tech);
// Refreshes the assistive tech if an AXMode change indicates that the
// presence of an active screen reader may have changed.
// * Platforms that have a perfect signal for the presence of a screen reader
// should not override this method: the default implementation treats the
// screen reader flag as a deterministic indicator.
// * Platforms such as Windows and Linux that require a slow computation
// to determine the presence of a screen reader should begin the computation
// when the presence of AXMode::kExtendedProperties is inconsistent with the
// current known screen reader state.
virtual void RefreshAssistiveTechIfNecessary(ui::AXMode new_mode);
ui::AXPlatform& ax_platform() { return ax_platform_; }
private:
void UpdateAccessibilityActivityTask();
// Stops tracking `web_contents` for disabling accessibility while it is
// hidden.
void OnDisablerDestroyedForWebContents(WebContentsImpl* web_contents);
// Combines the effective accessibility mode for the process, for
// `web_contents`'s BrowserContext, and for `web_contents` and applies it
// to `web_contents` if ProgressiveAccessibility is disabled or if
// `web_contents` is not hidden.
void ApplyAccessibilityModeToWebContents(WebContentsImpl* web_contents,
ui::AXMode process_mode,
ui::AXMode browser_context_mode,
ui::AXMode web_contents_mode);
// ScopedModeCollection::Delegate:
// Handles a change to the effective accessibility mode for the process.
void OnModeChanged(ui::AXMode old_mode, ui::AXMode new_mode) override;
// Filters out `kFromPlatform` from `mode` if activation from platform
// integration is enabled; otherwise, filters all mode flags from `mode` if
// `kFromPlatform` is present in it.
ui::AXMode FilterModeFlags(ui::AXMode mode) override;
// Handles a change to the effective accessibility mode for `browser_context`.
void OnModeChangedForBrowserContext(BrowserContext* browser_context,
ui::AXMode old_mode,
ui::AXMode new_mode);
// Handles a change to the effective accessibility mode for `web_contents`.
void OnModeChangedForWebContents(WebContents* web_contents,
ui::AXMode old_mode,
ui::AXMode new_mode);
// Add the AXModes + AXMode::kFromPlatform, when corresponding platform APIs
// are used.
void EnableAXModeFromPlatform(ui::AXMode modes_to_add);
// Refreshes the instance's notion of active assistive technologies.
// Implementations must call `OnAssistiveTechFound()` with the results of any
// discovery.
virtual void RefreshAssistiveTech();
// Helper function to configure the accessibility performance experiment.
std::unique_ptr<ScopedAccessibilityMode>
ConfigureAccessibilityPerformanceExperiment();
// The process's single AXPlatform instance.
ui::AXPlatform ax_platform_{*this};
// Whether there is a pending task to run UpdateAccessibilityActivityTask.
bool accessibility_update_task_pending_ = false;
// Whether changes to the AXMode are allowed.
// Changes are disallowed while running tests or when
// --force-renderer-accessibility is used on the command line.
bool allow_ax_mode_changes_ = true;
// Keeps track of whether performance filtering is allowed for the device.
// Default is true to defer to feature flag. Value may be set to false by
// prefs.
bool performance_filtering_allowed_ = true;
// Tracks whether the accessibility engine has been used in any form during
// the current session. Toggled to true when accessibility is first enabled,
// and never toggled back to false.
bool has_enabled_accessibility_in_session_ = false;
// True if activation of accessibility from interactions with the platform's
// accessibility integration is enabled.
bool activation_from_platform_enabled_ = true;
// Timer used to track the time between start-up and engine first-use.
base::ElapsedTimer first_use_timer_;
// Counter used to track the number of page navigations between start-up
// and engine first-use.
uint32_t num_page_navs_before_first_use_ = 0;
// The time of the first user input event; if we receive multiple
// user input events within a 30-second period and no
base::TimeTicks first_user_input_event_time_;
int user_input_event_count_ = 0;
// The time accessibility became active, used to calculate active time.
base::TimeTicks accessibility_active_start_time_;
// The time accessibility became inactive, used to calculate inactive time.
base::TimeTicks accessibility_inactive_start_time_;
// The last time accessibility was active, used to calculate active time.
base::TimeTicks accessibility_last_usage_time_;
// The time accessibility was enabled, for statistics.
base::TimeTicks accessibility_enabled_time_;
// The time accessibility was auto-disabled, for statistics.
base::TimeTicks accessibility_disabled_time_;
base::RepeatingCallbackList<void(const FocusedNodeDetails&)>
focus_changed_callbacks_;
// The collection of active ScopedAccessibilityMode instances targeting all
// WebContentses in the process.
ScopedModeCollection scoped_modes_for_process_{*this};
// A ScopedAccessibilityMode that holds the process-wide mode flags modified
// via --force-renderer-accessibility on the command line.
std::unique_ptr<ScopedAccessibilityMode> forced_accessibility_mode_;
// A ScopedAccessibilityMode that holds process-wide mode flags required to
// support the platform API calls being used.
std::unique_ptr<ScopedAccessibilityMode> platform_ax_mode_;
// Keeps track of whether the Accessibility Performance Measurement Experiment
// is currently active. This is necessary because there are cases where we
// don't want to make the experiment active, and checking the state of the
// feature flag causes the study to be active. In this case, if the conditions
// are met, this will contain the mode of the current experiment group,
// nullptr otherwise.
std::unique_ptr<ScopedAccessibilityMode> experiment_accessibility_mode_;
// The most recently hidden WebContentses; used only when the disable-on-hide
// feature of ProgressiveAccessibility is enabled. This container holds the
// most-recently hidden WebContentses. Accessibility is disabled for each one
// that is pushed out of this list when a sixth element is added.
std::list<raw_ptr<WebContentsImpl>> last_hidden_;
friend class ui::AXPlatform;
};
} // namespace content
#endif // CONTENT_BROWSER_ACCESSIBILITY_BROWSER_ACCESSIBILITY_STATE_IMPL_H_
|