chore: bump chromium to 138.0.7177.0 (main) (#47081)

* chore: bump chromium in DEPS to 138.0.7177.0

* 6530423: [WebContents] Fix IsNeverComposited() calls during initialization

Refs https://chromium-review.googlesource.com/c/chromium/src/+/6530423

* 6512551: [ios] Enable -Wobjc-property-assign-on-object-type

Refs https://chromium-review.googlesource.com/c/chromium/src/+/6512551

* chore: update patches

---------

Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
This commit is contained in:
electron-roller[bot]
2025-05-14 10:08:31 -04:00
committed by GitHub
parent f2639d13cc
commit d65a856bf3
26 changed files with 81 additions and 81 deletions

View File

@@ -29,7 +29,7 @@
@interface PopUpButtonHandler : NSObject
@property(nonatomic, assign) NSSavePanel* savePanel;
@property(nonatomic, weak) NSSavePanel* savePanel;
@property(nonatomic, strong) NSArray* contentTypesList;
- (instancetype)initWithPanel:(NSSavePanel*)panel

View File

@@ -231,7 +231,7 @@ void HandleAccessibilityRequestCallback(
continue;
}
// Ignore views that are never user-visible, like background pages.
if (delegate->IsNeverComposited(web_contents)) {
if (web_contents->IsNeverComposited()) {
continue;
}
content::BrowserContext* context = rvh->GetProcess()->GetBrowserContext();