summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-02 08:06:11 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-02 08:06:11 +0000
commit78ed1fca4b19ca99fd26cb99028bda81b8593c18 (patch)
tree8d611bdfab5dbf9d05b1fe53e6010778085a8007
parentcb4643d2aa233f603b4b6234a56de1a3486b28c6 (diff)
downloadchromium_src-78ed1fca4b19ca99fd26cb99028bda81b8593c18.zip
chromium_src-78ed1fca4b19ca99fd26cb99028bda81b8593c18.tar.gz
chromium_src-78ed1fca4b19ca99fd26cb99028bda81b8593c18.tar.bz2
Enable password generation by default.
Due to the current experiment setup, this feature will still only be used by a fraction of canary/dev users, but the trybots should now run with this feature enabled. BUG=114092,295787 R=gcasto@chromium.org Review URL: https://codereview.chromium.org/433213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287188 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--components/autofill/core/common/password_generation_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/autofill/core/common/password_generation_util.cc b/components/autofill/core/common/password_generation_util.cc
index cc76f91..95f4f60 100644
--- a/components/autofill/core/common/password_generation_util.cc
+++ b/components/autofill/core/common/password_generation_util.cc
@@ -55,7 +55,7 @@ bool IsPasswordGenerationEnabled() {
if (command_line->HasSwitch(switches::kEnablePasswordGeneration))
return true;
- return group_name == "Enabled";
+ return group_name != "Disabled";
}
} // namespace password_generation