Commit 7e484859 authored by Bettina's avatar Bettina Committed by Commit Bot

Create an experiment for saved password PG.

Expand phishguard to show warnings on saved password
reuse on phishing sites.

Bug: 1010764
Change-Id: I7ea4f49ab6afaac8d2229a011356d77f35d10612
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837092
Commit-Queue: Bettina Dea <bdea@chromium.org>
Reviewed-by: default avatarVarun Khaneja <vakh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#702501}
parent 8d2021d8
...@@ -44,6 +44,10 @@ const base::Feature kDeepScanningOfDownloads{ ...@@ -44,6 +44,10 @@ const base::Feature kDeepScanningOfDownloads{
const base::Feature kForceUseAPDownloadProtection{ const base::Feature kForceUseAPDownloadProtection{
"ForceUseAPDownloadProtection", base::FEATURE_DISABLED_BY_DEFAULT}; "ForceUseAPDownloadProtection", base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature kPasswordProtectionForSavedPasswords{
"SafeBrowsingPasswordProtectionForSignedInUsers",
base::FEATURE_DISABLED_BY_DEFAULT};
const base::Feature kPasswordProtectionForSignedInUsers{ const base::Feature kPasswordProtectionForSignedInUsers{
"SafeBrowsingPasswordProtectionForSignedInUsers", "SafeBrowsingPasswordProtectionForSignedInUsers",
base::FEATURE_DISABLED_BY_DEFAULT}; base::FEATURE_DISABLED_BY_DEFAULT};
...@@ -114,6 +118,7 @@ constexpr struct { ...@@ -114,6 +118,7 @@ constexpr struct {
{&kCaptureSafetyNetId, true}, {&kCaptureSafetyNetId, true},
{&kCommittedSBInterstitials, true}, {&kCommittedSBInterstitials, true},
{&kForceUseAPDownloadProtection, false}, {&kForceUseAPDownloadProtection, false},
{&kPasswordProtectionForSavedPasswords, true},
{&kPasswordProtectionForSignedInUsers, true}, {&kPasswordProtectionForSignedInUsers, true},
{&kRealTimeUrlLookupEnabled, true}, {&kRealTimeUrlLookupEnabled, true},
{&kRealTimeUrlLookupFetchAllowlist, true}, {&kRealTimeUrlLookupFetchAllowlist, true},
......
...@@ -51,6 +51,9 @@ extern const base::Feature kDeepScanningOfDownloads; ...@@ -51,6 +51,9 @@ extern const base::Feature kDeepScanningOfDownloads;
// APP. // APP.
extern const base::Feature kForceUseAPDownloadProtection; extern const base::Feature kForceUseAPDownloadProtection;
// Enable password protection for non-Google accounts.
extern const base::Feature kPasswordProtectionForSavedPasswords;
// Enable GAIA password protection for signed-in users. // Enable GAIA password protection for signed-in users.
extern const base::Feature kPasswordProtectionForSignedInUsers; extern const base::Feature kPasswordProtectionForSignedInUsers;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment