From b9a07b2cea741f7e7ee953ca7b3f80479a920087 Mon Sep 17 00:00:00 2001 From: csagan5 <32685696+csagan5@users.noreply.github.com> Date: Tue, 27 Jul 2021 07:45:58 +0200 Subject: [PATCH] Release 92.0.4515.125 --- CHANGELOG.md | 4 ++++ build/RELEASE | 2 +- build/bromite_patches_list.txt | 2 +- .../Do-not-build-API-keys-infobar.patch | 23 +++++++++++++++++++ ...sable-warning-about-missing-API-keys.patch | 23 ------------------- 5 files changed, 29 insertions(+), 25 deletions(-) create mode 100644 build/patches/Do-not-build-API-keys-infobar.patch delete mode 100644 build/patches/browser-ui-disable-warning-about-missing-API-keys.patch diff --git a/CHANGELOG.md b/CHANGELOG.md index 450b4e30..add654cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 92.0.4515.125 +* replace patch for missing API keys warning +* fix subresource filter not working (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/1299) + # 92.0.4515.103 * disable User Agent client hints * fix builds with system sysroots diff --git a/build/RELEASE b/build/RELEASE index 10deef23..b2ea24ef 100644 --- a/build/RELEASE +++ b/build/RELEASE @@ -1 +1 @@ -92.0.4515.103 +92.0.4515.125 diff --git a/build/bromite_patches_list.txt b/build/bromite_patches_list.txt index 5e889ea6..0c61c10b 100644 --- a/build/bromite_patches_list.txt +++ b/build/bromite_patches_list.txt @@ -63,7 +63,7 @@ Disable-plugins-enumeration.patch net-cert-increase-default-key-length-for-newly-generated-RSA-keys.patch dns-send-IPv6-connectivity-probes-to-RIPE-DNS.patch profile-resetter-do-not-tick-send-settings-by-default.patch -browser-ui-disable-warning-about-missing-API-keys.patch +Do-not-build-API-keys-infobar.patch autofill-disable-autofill-download-manager.patch first_run-deactivate-autoupdate-globally.patch translate-disable-fetching-of-translate-languages-from-server.patch diff --git a/build/patches/Do-not-build-API-keys-infobar.patch b/build/patches/Do-not-build-API-keys-infobar.patch new file mode 100644 index 00000000..3d3c0cb4 --- /dev/null +++ b/build/patches/Do-not-build-API-keys-infobar.patch @@ -0,0 +1,23 @@ +From: csagan5 <32685696+csagan5@users.noreply.github.com> +Date: Fri, 23 Jul 2021 15:05:19 +0200 +Subject: Do not build API keys infobar + +--- + chrome/browser/ui/BUILD.gn | 2 -- + 1 file changed, 2 deletions(-) + +diff --git a/chrome/browser/ui/BUILD.gn b/chrome/browser/ui/BUILD.gn +--- a/chrome/browser/ui/BUILD.gn ++++ b/chrome/browser/ui/BUILD.gn +@@ -1172,8 +1172,6 @@ static_library("ui") { + "singleton_tabs.h", + "startup/automation_infobar_delegate.cc", + "startup/automation_infobar_delegate.h", +- "startup/google_api_keys_infobar_delegate.cc", +- "startup/google_api_keys_infobar_delegate.h", + "startup/launch_mode_recorder.cc", + "startup/launch_mode_recorder.h", + "startup/obsolete_system_infobar_delegate.cc", +-- +2.17.1 + diff --git a/build/patches/browser-ui-disable-warning-about-missing-API-keys.patch b/build/patches/browser-ui-disable-warning-about-missing-API-keys.patch deleted file mode 100644 index c987293c..00000000 --- a/build/patches/browser-ui-disable-warning-about-missing-API-keys.patch +++ /dev/null @@ -1,23 +0,0 @@ -From: Joachim Bauch -Date: Tue, 9 Dec 2014 17:19:41 +0100 -Subject: browser-ui: disable warning about missing API keys - -We do not want to use the services anyway ;) ---- - chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc b/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc ---- a/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc -+++ b/chrome/browser/ui/startup/google_api_keys_infobar_delegate.cc -@@ -16,6 +16,7 @@ - - // static - void GoogleApiKeysInfoBarDelegate::Create( -+ return; - infobars::ContentInfoBarManager* infobar_manager) { - infobar_manager->AddInfoBar( - CreateConfirmInfoBar(std::unique_ptr( --- -2.17.1 -