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:
parent
06d7a51a58
commit
f6407b4949
39 changed files with 189 additions and 108 deletions
|
@ -321,6 +321,8 @@ ExtensionFunction::ResponseAction TabsQueryFunction::Run() {
|
|||
tab.active = contents->IsFocused();
|
||||
tab.audible = contents->IsCurrentlyAudible();
|
||||
tab.muted_info = CreateMutedInfo(wc);
|
||||
// TODO: Add proper support for split views
|
||||
tab.split_view_id = -1;
|
||||
|
||||
result.Append(tab.ToValue());
|
||||
}
|
||||
|
@ -353,6 +355,8 @@ ExtensionFunction::ResponseAction TabsGetFunction::Run() {
|
|||
|
||||
tab.active = contents->IsFocused();
|
||||
tab.last_accessed = wc->GetLastActiveTime().InMillisecondsFSinceUnixEpoch();
|
||||
// TODO: Add proper support for split views
|
||||
tab.split_view_id = -1;
|
||||
|
||||
return RespondNow(ArgumentList(tabs::Get::Results::Create(std::move(tab))));
|
||||
}
|
||||
|
@ -696,6 +700,8 @@ ExtensionFunction::ResponseValue TabsUpdateFunction::GetResult() {
|
|||
tab.active = api_web_contents->IsFocused();
|
||||
tab.muted_info = CreateMutedInfo(web_contents_);
|
||||
tab.audible = web_contents_->IsCurrentlyAudible();
|
||||
// TODO: Add proper support for split views
|
||||
tab.split_view_id = -1;
|
||||
|
||||
return ArgumentList(tabs::Get::Results::Create(std::move(tab)));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue