chore: bump chromium to 143.0.7489.0 (main) (#48642)

* chore: bump chromium in DEPS to 143.0.7489.0

* chore: update add_didinstallconditionalfeatures.patch

no manual changes; patch applied with fuzz

* chore: update allow_in-process_windows_to_have_different_web_prefs.patch

patch reapplied manually due to context shear

Remove BackForwardTransitions flag | https://chromium-review.googlesource.com/c/chromium/src/+/7022596

* chore: update process_singleton.patch

patch reapplied manually due to context shear

Use an empty prefix for socket temporary directory. | https://chromium-review.googlesource.com/c/chromium/src/+/7062192

* chore: update add_electron_deps_to_license_credits_file.patch

no manual changes; patch applied with fuzz

* chore: update expose_ripemd160.patch

Apply modernize-use-nullptr fixes in all .cc files | https://boringssl-review.googlesource.com/c/boringssl/+/83067

* chore: update feat_expose_several_extra_cipher_functions.patch

Apply modernize-use-nullptr fixes in all .cc files | https://boringssl-review.googlesource.com/c/boringssl/+/83067

* Pass Bus::Options by value with std::move. | https://chromium-review.googlesource.com/c/chromium/src/+/7056670

* chore: update patches

* Remove some includes of base/callback_list.h | https://chromium-review.googlesource.com/c/chromium/src/+/7055621

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

---------

Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
electron-roller[bot]
2025-10-23 16:28:51 -04:00
committed by GitHub
parent fbfd7c7126
commit 6d8196fba3
55 changed files with 253 additions and 254 deletions

View File

@@ -72,7 +72,8 @@ void CheckPortalAvailabilityOnBusThread() {
options.bus_type = dbus::Bus::SESSION;
options.connection_type = dbus::Bus::PRIVATE;
options.dbus_task_runner = g_electron_dbus_thread_task_runner.Get();
scoped_refptr<dbus::Bus> bus = base::MakeRefCounted<dbus::Bus>(options);
scoped_refptr<dbus::Bus> bus =
base::MakeRefCounted<dbus::Bus>(std::move(options));
dbus_utils::CheckForServiceAndStart(
bus, kXdgPortalService,
base::BindOnce(

View File

@@ -34,8 +34,7 @@ bool ShouldUseGlobalMenuBar() {
if (env->HasVar("ELECTRON_FORCE_WINDOW_MENU_BAR"))
return false;
dbus::Bus::Options options;
auto bus = base::MakeRefCounted<dbus::Bus>(options);
auto bus = base::MakeRefCounted<dbus::Bus>(dbus::Bus::Options{});
dbus::ObjectProxy* object_proxy =
bus->GetObjectProxy(DBUS_SERVICE_DBUS, dbus::ObjectPath(DBUS_PATH_DBUS));