chore: bump chromium to 135.0.7015.0 (main) (#45500)

* 6230977

* chore: bump chromium to 135.0.7012.0

* chore: update accelerator.patch

Support parsing Ctrl+Alt shortcuts | 6238137

* 6234236: Reapply bindings: Pass CppHeap on Isolate creation | 6234236

* 6234614: [ios blink] Move to use external begin frame source | 6234614

* chore: update chromium/feat_add_streaming-protocol_registry_to_multibuffer_data_source.patch

no manual changes; patch applied with fuzz

* chore: update chromium/build_libc_as_static_library.patch

no manual changes; patch applied with fuzz

* chore: remove chromium/cherry-pick-dd8e2822e507.patch

landed upstream

* 6188884: Grit: Remove output_all_resource_defines from list of valid attributes. | 6188884

* 6226981: [views-ax] Remove View::GetAccessibleNodeData() method | 6226981

* 6214895: [views-ax] Deprecate View::NotifyAccessibilityEvent | 6214895

* 6196494: Remove ImageView::SetImage() with ImageSkia param | 6196494

* 6236267: [cleanup] Remove unused PrinterBasicInfo fields | 6236267

* refactor: remove status, isDefault properties from PrinterInfo

Xref: 6236267

* chore: lint

* fixup: added mas bypass to new file added in 6208630 see slack for more context

* chore: node script/gen-libc++-filenames.js

* chore: e patches all

* fix: duplicate crdtp symbols

* chore: update patches

* fixup! [Media Features] Remove launched features

---------

Co-authored-by: alice <alice@makenotion.com>
Co-authored-by: Charles Kerr <charles@charleskerr.com>
Co-authored-by: deepak1556 <hop2deep@gmail.com>
This commit is contained in:
electron-roller[bot] 2025-02-18 11:51:27 -05:00 committed by GitHub
parent 6be1151ffc
commit 47572286f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
82 changed files with 414 additions and 601 deletions

View file

@ -27,11 +27,6 @@
namespace electron {
void AutofillPopupChildView::GetAccessibleNodeData(ui::AXNodeData* node_data) {
node_data->role = ax::mojom::Role::kMenuItem;
node_data->SetName(suggestion_);
}
BEGIN_METADATA(AutofillPopupChildView)
END_METADATA
@ -41,6 +36,8 @@ AutofillPopupView::AutofillPopupView(AutofillPopup* popup,
CreateChildViews();
SetFocusBehavior(FocusBehavior::ALWAYS);
set_drag_controller(this);
SetAccessibleRole(ax::mojom::Role::kMenu);
SetAccessibleName(u"Autofill Menu");
}
AutofillPopupView::~AutofillPopupView() {
@ -103,7 +100,7 @@ void AutofillPopupView::Show() {
auto* host = popup_->frame_host_->GetRenderViewHost()->GetWidget();
host->AddKeyPressEventCallback(keypress_callback_);
NotifyAccessibilityEvent(ax::mojom::Event::kMenuStart, true);
NotifyAccessibilityEventDeprecated(ax::mojom::Event::kMenuStart, true);
}
void AutofillPopupView::Hide() {
@ -114,7 +111,7 @@ void AutofillPopupView::Hide() {
}
RemoveObserver();
NotifyAccessibilityEvent(ax::mojom::Event::kMenuEnd, true);
NotifyAccessibilityEventDeprecated(ax::mojom::Event::kMenuEnd, true);
if (GetWidget()) {
GetWidget()->Close();
@ -157,7 +154,7 @@ void AutofillPopupView::OnSelectedRowChanged(
int selected = current_row_selection.value_or(-1);
if (selected == -1 || static_cast<size_t>(selected) >= children().size())
return;
children().at(selected)->NotifyAccessibilityEvent(
children().at(selected)->NotifyAccessibilityEventDeprecated(
ax::mojom::Event::kSelection, true);
}
}
@ -265,11 +262,6 @@ void AutofillPopupView::OnPaint(gfx::Canvas* canvas) {
}
}
void AutofillPopupView::GetAccessibleNodeData(ui::AXNodeData* node_data) {
node_data->role = ax::mojom::Role::kMenu;
node_data->SetName("Autofill Menu");
}
void AutofillPopupView::OnMouseCaptureLost() {
ClearSelection();
}