Index: chrome/browser/signin/easy_unlock_service_regular.cc |
diff --git a/chrome/browser/signin/easy_unlock_service_regular.cc b/chrome/browser/signin/easy_unlock_service_regular.cc |
index 4b733740a4431006a54734a7f919a2cddd861843..5ea569515db2f27f221ba06b7f90f80d581a8b23 100644 |
--- a/chrome/browser/signin/easy_unlock_service_regular.cc |
+++ b/chrome/browser/signin/easy_unlock_service_regular.cc |
@@ -191,9 +191,8 @@ bool EasyUnlockServiceRegular::IsAllowedInternal() { |
// Respect existing policy and skip finch test. |
if (!profile()->GetPrefs()->IsManagedPreference(prefs::kEasyUnlockAllowed)) { |
- // It is disabled when the trial exists and is in "Disable" group. |
- if (base::FieldTrialList::FindFullName("EasyUnlock") == "Disable") |
- return false; |
+ // It is enabled when the trial exists and is in "Enable" group. |
+ return base::FieldTrialList::FindFullName("EasyUnlock") == "Enable"; |
} |
return true; |