chore: bump chromium to 129.0.6664.0 (main) (#43329)

* chore: bump chromium in DEPS to 129.0.6657.0

* chore: update patches

* chore: bump chromium in DEPS to 129.0.6658.0

* chore: update patches

* 5743786: [ServiceWorker] Populate service worker start token to WorkerId.

5743786

* 5784424: [Extensions] Move ownership of Dispatcher to ExtensionsRendererClient

5784424

* chore: bump chromium in DEPS to 129.0.6659.0

* chore: bump chromium in DEPS to 129.0.6660.0

* chore: update patches

* chore: bump chromium in DEPS to 129.0.6662.0

* chore: bump chromium in DEPS to 129.0.6664.0

* 5789627: [Partitioned Popins] (3) `popin` feature triggers third-party storage partitioning

5789627

* 5791367: Remove some chrome:: namespace from chrome/browser/app_mode/*

5791367

* 5791522: [SCK] Skip redundant getShareableContentWithCompletionHandler

5791522

* 5761330: Send refresh rate prefs b/w RefreshRateController and DisplayPrivate

5761330

* chore: fixup patch indices

* 5793591: Remove unused GetHeader overload

5793591

* 5787624: [Extensions] Simplify ExtensionsRendererClient::RenderThreadStarted()

5787624

* 5721709: Fix Incorrect last_accessed_time Tracking for Tabs

5721709

* 5789215: [Extensions] Add a //chrome/common/extensions build target

5789215

* Roll V8 from 48f669a0758c to eee3eb91d01c

48f669a075..eee3eb91d0

---------

Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
electron-roller[bot] 2024-08-19 14:52:53 -04:00 committed by GitHub
parent cc16de7032
commit 4c3014944c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
73 changed files with 210 additions and 229 deletions

View file

@ -16,12 +16,6 @@ namespace electron {
ElectronExtensionsRendererClient::ElectronExtensionsRendererClient() {}
void ElectronExtensionsRendererClient::RenderThreadStarted() {
dispatcher_ =
std::make_unique<extensions::Dispatcher>(std::move(api_providers_));
dispatcher_->OnRenderThreadStarted(content::RenderThread::Get());
}
ElectronExtensionsRendererClient::~ElectronExtensionsRendererClient() = default;
bool ElectronExtensionsRendererClient::IsIncognitoProcess() const {
@ -33,10 +27,6 @@ int ElectronExtensionsRendererClient::GetLowestIsolatedWorldId() const {
return WorldIDs::ISOLATED_WORLD_ID_EXTENSIONS;
}
extensions::Dispatcher* ElectronExtensionsRendererClient::GetDispatcher() {
return dispatcher_.get();
}
bool ElectronExtensionsRendererClient::AllowPopup() {
// TODO(samuelmaddock):
return false;
@ -44,17 +34,17 @@ bool ElectronExtensionsRendererClient::AllowPopup() {
void ElectronExtensionsRendererClient::RunScriptsAtDocumentStart(
content::RenderFrame* render_frame) {
dispatcher_->RunScriptsAtDocumentStart(render_frame);
dispatcher()->RunScriptsAtDocumentStart(render_frame);
}
void ElectronExtensionsRendererClient::RunScriptsAtDocumentEnd(
content::RenderFrame* render_frame) {
dispatcher_->RunScriptsAtDocumentEnd(render_frame);
dispatcher()->RunScriptsAtDocumentEnd(render_frame);
}
void ElectronExtensionsRendererClient::RunScriptsAtDocumentIdle(
content::RenderFrame* render_frame) {
dispatcher_->RunScriptsAtDocumentIdle(render_frame);
dispatcher()->RunScriptsAtDocumentIdle(render_frame);
}
} // namespace electron