From ad472e23bb9baa357eab935f520edfbd618585f1 Mon Sep 17 00:00:00 2001 From: Carmelo Messina Date: Thu, 28 Sep 2023 11:17:55 +0200 Subject: [PATCH] keep disabled download and upload service --- ...e-privacy-issues-in-password-manager.patch | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/build/patches/00Disable-privacy-issues-in-password-manager.patch b/build/patches/00Disable-privacy-issues-in-password-manager.patch index d8f810f1..e0c84f17 100644 --- a/build/patches/00Disable-privacy-issues-in-password-manager.patch +++ b/build/patches/00Disable-privacy-issues-in-password-manager.patch @@ -9,10 +9,10 @@ License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html .../affiliation/affiliation_backend.cc | 1 + .../affiliation/affiliation_service_impl.cc | 4 ++++ .../core/browser/affiliation/facet_manager.cc | 23 +++---------------- - .../browser/features/password_features.cc | 4 ++-- + .../browser/features/password_features.cc | 12 +++++----- .../leak_detection_check_factory_impl.cc | 5 ++++ .../leak_detection_check_impl.cc | 4 +--- - 8 files changed, 17 insertions(+), 36 deletions(-) + 8 files changed, 21 insertions(+), 40 deletions(-) diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml --- a/chrome/android/java/AndroidManifest.xml @@ -125,6 +125,25 @@ diff --git a/components/password_manager/core/browser/features/password_features // Enables the notification UI that is displayed to the user when visiting a // website for which a stored password has been shared by another user. +@@ -70,14 +70,14 @@ BASE_FEATURE(kSharedPasswordNotificationUI, + // Enables password receiving service including incoming password sharing + // invitation sync data type. + BASE_FEATURE(kPasswordManagerEnableReceiverService, +- "PasswordManagerEnableReceiverService", +- base::FEATURE_DISABLED_BY_DEFAULT); ++ "PasswordManagerEnableReceiverService", // must disable ++ base::FEATURE_DISABLED_BY_DEFAULT); // by default + + // Enables password sender service including outgoing password sharing + // invitation sync data type. + BASE_FEATURE(kPasswordManagerEnableSenderService, +- "PasswordManagerEnableSenderService", +- base::FEATURE_DISABLED_BY_DEFAULT); ++ "PasswordManagerEnableSenderService", // must disable ++ base::FEATURE_DISABLED_BY_DEFAULT); // by default + + // Enables logging the content of chrome://password-manager-internals to the + // terminal. diff --git a/components/password_manager/core/browser/leak_detection/leak_detection_check_factory_impl.cc b/components/password_manager/core/browser/leak_detection/leak_detection_check_factory_impl.cc --- a/components/password_manager/core/browser/leak_detection/leak_detection_check_factory_impl.cc +++ b/components/password_manager/core/browser/leak_detection/leak_detection_check_factory_impl.cc