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

Unified Diff: chrome/browser/about_flags.cc

Issue 146023002: Password manager now ignores autocomplete='off' by default; user may specify a flag that says other… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
Index: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 8874272aa63a05cf4fad231c71f41bd3d628f367..ed9744c7450e52c2aeea5089a2a5f47a46869e0d 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1947,11 +1947,11 @@ const Experiment kExperiments[] = {
MULTI_VALUE_TYPE(kSearchButtonInOmniboxChoices)
},
{
- "enable-ignore-autocomplete-off",
- IDS_FLAGS_ENABLE_IGNORE_AUTOCOMPLETE_OFF_NAME,
- IDS_FLAGS_ENABLE_IGNORE_AUTOCOMPLETE_OFF_DESCRIPTION,
+ "do-not-ignore-autocomplete-off",
Patrick Dubroy 2014/01/24 16:39:10 I know it sounds a bit confusing, but "disable" is
jww 2014/01/24 18:01:14 Done.
+ IDS_FLAGS_DO_NOT_IGNORE_AUTOCOMPLETE_OFF_NAME,
+ IDS_FLAGS_DO_NOT_IGNORE_AUTOCOMPLETE_OFF_DESCRIPTION,
kOsAll,
- SINGLE_VALUE_TYPE(autofill::switches::kEnableIgnoreAutocompleteOff)
+ SINGLE_VALUE_TYPE(autofill::switches::kDoNotIgnoreAutocompleteOff)
},
#if defined(USE_AURA) || defined(OS_WIN)
{

Powered by Google App Engine
This is Rietveld 408576698