Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Unified Diff: ios/chrome/browser/experimental_flags.mm

Issue 2229123002: Turn on update password UI on iOS by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/experimental_flags.mm
diff --git a/ios/chrome/browser/experimental_flags.mm b/ios/chrome/browser/experimental_flags.mm
index df980e9f4110cc0e5199b18048df174976f44916..aac30b83dc1ce47860784b34e379ab1b19b6c236 100644
--- a/ios/chrome/browser/experimental_flags.mm
+++ b/ios/chrome/browser/experimental_flags.mm
@@ -27,7 +27,7 @@ NSString* const kEnableViewCopyPasswords = @"EnableViewCopyPasswords";
NSString* const kHeuristicsForPasswordGeneration =
@"HeuristicsForPasswordGeneration";
NSString* const kEnableReadingList = @"EnableReadingList";
-NSString* const kUpdatePasswordUIEnabled = @"UpdatePasswordUIEnabled";
+NSString* const kUpdatePasswordUIDisabled = @"UpdatePasswordUIDisabled";
NSString* const kEnableQRCodeReader = @"EnableQRCodeReader";
NSString* const kEnableNewClearBrowsingDataUI = @"EnableNewClearBrowsingDataUI";
} // namespace
@@ -140,8 +140,8 @@ bool IsPhysicalWebEnabled() {
}
bool IsUpdatePasswordUIEnabled() {
- return [[NSUserDefaults standardUserDefaults]
- boolForKey:kUpdatePasswordUIEnabled];
+ return ![[NSUserDefaults standardUserDefaults]
+ boolForKey:kUpdatePasswordUIDisabled];
}
bool IsQRCodeReaderEnabled() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698