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
|
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/accessibility/platform/ax_platform.h"
#include "base/check_op.h"
#include "ui/accessibility/accessibility_features.h"
#include "ui/accessibility/platform/ax_mode_observer.h"
#if BUILDFLAG(IS_WIN)
#include <oleacc.h>
#include <uiautomation.h>
#endif // BUILDFLAG(IS_WIN)
namespace ui {
namespace {
AXPlatform* g_instance = nullptr;
} // namespace
// static
AXPlatform& AXPlatform::GetInstance() {
CHECK_NE(g_instance, nullptr);
DCHECK_CALLED_ON_VALID_THREAD(g_instance->thread_checker_);
return *g_instance;
}
AXPlatform::AXPlatform(Delegate& delegate) : delegate_(delegate) {
DCHECK_EQ(g_instance, nullptr);
g_instance = this;
}
AXPlatform::~AXPlatform() {
DCHECK_EQ(g_instance, this);
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
g_instance = nullptr;
}
AXMode AXPlatform::GetMode() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return delegate_->GetAccessibilityMode();
}
void AXPlatform::AddModeObserver(AXModeObserver* observer) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
observers_.AddObserver(observer);
}
void AXPlatform::RemoveModeObserver(AXModeObserver* observer) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
observers_.RemoveObserver(observer);
}
void AXPlatform::NotifyModeAdded(AXMode mode) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
observers_.Notify(&AXModeObserver::OnAXModeAdded, mode);
}
void AXPlatform::NotifyAssistiveTechChanged(AssistiveTech assistive_tech) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (active_assistive_tech_ == assistive_tech) {
return;
}
active_assistive_tech_ = assistive_tech;
observers_.Notify(&AXModeObserver::OnAssistiveTechChanged, assistive_tech);
}
bool AXPlatform::IsScreenReaderActive() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return IsScreenReader(active_assistive_tech_);
}
bool AXPlatform::IsCaretBrowsingEnabled() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return caret_browsing_enabled_;
}
void AXPlatform::SetCaretBrowsingState(bool enabled) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
caret_browsing_enabled_ = enabled;
}
#if BUILDFLAG(IS_WIN)
const std::string& AXPlatform::GetProductName() const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
RetrieveProductStringsIfNeeded();
return product_strings_->product_name;
}
const std::string& AXPlatform::GetProductVersion() const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
RetrieveProductStringsIfNeeded();
return product_strings_->product_version;
}
const std::string& AXPlatform::GetToolkitVersion() const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
RetrieveProductStringsIfNeeded();
return product_strings_->toolkit_version;
}
void AXPlatform::SetUiaProviderEnabled(bool is_enabled) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
CHECK_EQ(uia_provider_enablement_, UiaProviderEnablement::kVariations);
uia_provider_enablement_ = is_enabled ? UiaProviderEnablement::kEnabled
: UiaProviderEnablement::kDisabled;
}
void AXPlatform::DisableActiveUiaProvider() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (uia_provider_enablement_ == UiaProviderEnablement::kDisabled) {
// Already disabled.
return;
}
uia_provider_enablement_ = UiaProviderEnablement::kDisabled;
// We must call this *after* we disabled the UIA provider to ensure that we
// don't respond with the same provider to a re-entrant WM_GETOBJECT call. See
// https://learn.microsoft.com/en-us/windows/win32/api/uiautomationcoreapi/nf-uiautomationcoreapi-uiadisconnectallproviders
// for more info.
HRESULT hr = ::UiaDisconnectAllProviders();
DCHECK(SUCCEEDED(hr));
delegate_->OnUiaProviderDisabled();
}
bool AXPlatform::IsUiaProviderEnabled() const {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
return uia_provider_enablement_ == UiaProviderEnablement::kVariations
? base::FeatureList::IsEnabled(features::kUiaProvider)
: (uia_provider_enablement_ == UiaProviderEnablement::kEnabled);
}
void AXPlatform::OnUiaProviderRequested(bool uia_provider_enabled) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
delegate_->OnUiaProviderRequested(uia_provider_enabled);
}
#endif // BUILDFLAG(IS_WIN)
#if BUILDFLAG(IS_WIN)
void AXPlatform::OnScreenReaderHoneyPotQueried() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
// We used to trust this as a signal that a screen reader is running, but it's
// been abused. Now only enable accessibility if we detect that the name is
// also used. Do not do the same for location and role, as the Windows Text
// Services Framework (MSTSF) has been known to check the role of each new
// window; see https://crbug.com/416429182.
if (screen_reader_honeypot_queried_) {
return;
}
screen_reader_honeypot_queried_ = true;
if (is_name_used_) {
OnPropertiesUsedInWebContent();
}
}
#endif // BUILDFLAG(IS_WIN)
void AXPlatform::OnMinimalPropertiesUsed(bool is_name_used) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
delegate_->OnMinimalPropertiesUsed();
#if BUILDFLAG(IS_WIN)
// See OnScreenReaderHoneyPotQueried, above.
if (!is_name_used || is_name_used_) {
return;
}
is_name_used_ = true;
if (screen_reader_honeypot_queried_) {
OnPropertiesUsedInWebContent();
return;
}
#endif
}
void AXPlatform::OnPropertiesUsedInBrowserUI() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
delegate_->OnPropertiesUsedInBrowserUI();
}
void AXPlatform::OnPropertiesUsedInWebContent() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
delegate_->OnPropertiesUsedInWebContent();
}
void AXPlatform::OnInlineTextBoxesUsedInWebContent() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
delegate_->OnInlineTextBoxesUsedInWebContent();
}
void AXPlatform::OnExtendedPropertiesUsedInWebContent() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
delegate_->OnExtendedPropertiesUsedInWebContent();
}
void AXPlatform::OnHTMLAttributesUsed() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
delegate_->OnHTMLAttributesUsed();
}
void AXPlatform::OnActionFromAssistiveTech() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
delegate_->OnActionFromAssistiveTech();
}
void AXPlatform::DetachFromThreadForTesting() {
DETACH_FROM_THREAD(thread_checker_);
}
#if BUILDFLAG(IS_WIN)
void AXPlatform::RetrieveProductStringsIfNeeded() const {
if (!product_strings_) {
product_strings_ = delegate_->GetProductStrings();
}
}
#endif // BUILDFLAG(IS_WIN)
} // namespace ui
|