keep disabled download and upload service
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user