chore: bump chromium to 140.0.7314.0 (main) (#47882)

* chore: bump chromium in DEPS to 140.0.7314.0

* 6769821: Delegate checking whether preconnect is enabled.

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

* 6632993: PDF Searchify IPH: Use embedder WebContents for GuestView PDF

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

* 6769214: [ios blink] Set IOSurface shared memory region on all GMB handles

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

* chore: update patches

* 6769572: [soft navs]: Move AsyncSameDocumentNavigationStarted to TaskAttributionTracker

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

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

* 6765740: [SxS] Implement support for split view in extensions API

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

* 6769821: Delegate checking whether preconnect is enabled.

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

---------

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-07-28 15:31:54 -07:00 committed by GitHub
commit f6407b4949
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 189 additions and 108 deletions

View file

@ -61,6 +61,14 @@
// TODO(kalman): Investigate how this is ending up as -1 (based on window type? a bug?) and whether it should be optional instead.
"index": {"type": "integer", "minimum": -1, "description": "The zero-based index of the tab within its window."},
"groupId": {"type": "integer", "minimum": -1, "description": "The ID of the group that the tab belongs to."},
"splitViewId": {
"type": "integer",
"minimum": -1,
"optional": "true",
"description": "The ID of the Split View that the tab belongs to.",
// TODO(crbug.com/433273595): Enable documentation when ready for launch.
"nodoc": "true"
},
"windowId": {"type": "integer", "minimum": 0, "description": "The ID of the window that contains the tab."},
"openerTabId": {"type": "integer", "minimum": 0, "optional": true, "description": "The ID of the tab that opened this tab, if any. This property is only present if the opener tab still exists."},
"selected": {"type": "boolean", "description": "Whether the tab is selected.", "deprecated": "Please use $(ref:tabs.Tab.highlighted)."},
@ -524,6 +532,12 @@
"minimum": -1,
"description": "The ID of the group that the tabs are in, or $(ref:tabGroups.TAB_GROUP_ID_NONE) for ungrouped tabs."
},
"splitViewId": {
"type": "integer",
"minimum": -1,
"optional": true,
"description": "The ID of the Split View that the tabs are in, or $(ref:tabs.SPLIT_TAB_ID_NONE) for tabs that aren't in a Split View."
},
"windowId": {
"type": "integer",
"optional": true,
@ -680,6 +694,12 @@
"minimum": -1,
"description": "The tab's new group."
},
"splitViewId": {
"type": "integer",
"minimum": -1,
"optional": true,
"description": "The tab's new Split View."
},
"pinned": {
"type": "boolean",
"optional": true,