Update to Chromium version 131.0.6768.0 (#1366576)

mac: Switch to Xcode 16.0 16A242d with macOS SDK 15.0 24A336
This commit is contained in:
Nik Pavlov
2024-10-24 11:05:31 -04:00
committed by Marshall Greenblatt
parent e3a8741563
commit 5d817b20a6
81 changed files with 655 additions and 710 deletions

View File

@@ -626,28 +626,22 @@ void CefBrowserPlatformDelegateOsr::DragSourceSystemDragEnded() {
void CefBrowserPlatformDelegateOsr::AccessibilityEventReceived(
const ui::AXUpdatesAndEvents& details) {
CefRefPtr<CefRenderHandler> handler = browser_->client()->GetRenderHandler();
if (handler.get()) {
CefRefPtr<CefAccessibilityHandler> acchandler =
handler->GetAccessibilityHandler();
if (acchandler.get()) {
acchandler->OnAccessibilityTreeChange(
if (auto handler = browser_->client()->GetRenderHandler()) {
if (auto acc_handler = handler->GetAccessibilityHandler()) {
acc_handler->OnAccessibilityTreeChange(
osr_accessibility_util::ParseAccessibilityEventData(details));
}
}
}
void CefBrowserPlatformDelegateOsr::AccessibilityLocationChangesReceived(
const std::vector<ui::AXLocationChanges>& details) {
CefRefPtr<CefRenderHandler> handler = browser_->client()->GetRenderHandler();
if (handler.get()) {
CefRefPtr<CefAccessibilityHandler> acchandler =
handler->GetAccessibilityHandler();
if (acchandler.get()) {
acchandler->OnAccessibilityLocationChange(
osr_accessibility_util::ParseAccessibilityLocationData(details));
const ui::AXTreeID& tree_id,
ui::AXLocationAndScrollUpdates& details) {
if (auto handler = browser_->client()->GetRenderHandler()) {
if (auto acc_handler = handler->GetAccessibilityHandler()) {
acc_handler->OnAccessibilityLocationChange(
osr_accessibility_util::ParseAccessibilityLocationData(tree_id,
details));
}
}
}