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

Side by Side Diff: components/autofill/core/common/password_generation_util.cc

Issue 433213003: Enable password generation by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/autofill/core/common/password_generation_util.h" 5 #include "components/autofill/core/common/password_generation_util.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/metrics/field_trial.h" 8 #include "base/metrics/field_trial.h"
9 #include "base/metrics/histogram.h" 9 #include "base/metrics/histogram.h"
10 #include "components/autofill/core/common/autofill_switches.h" 10 #include "components/autofill/core/common/autofill_switches.h"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 std::string group_name = 48 std::string group_name =
49 base::FieldTrialList::FindFullName("PasswordGeneration"); 49 base::FieldTrialList::FindFullName("PasswordGeneration");
50 50
51 CommandLine* command_line = CommandLine::ForCurrentProcess(); 51 CommandLine* command_line = CommandLine::ForCurrentProcess();
52 if (command_line->HasSwitch(switches::kDisablePasswordGeneration)) 52 if (command_line->HasSwitch(switches::kDisablePasswordGeneration))
53 return false; 53 return false;
54 54
55 if (command_line->HasSwitch(switches::kEnablePasswordGeneration)) 55 if (command_line->HasSwitch(switches::kEnablePasswordGeneration))
56 return true; 56 return true;
57 57
58 return group_name == "Enabled"; 58 return group_name != "Disabled";
59 } 59 }
60 60
61 } // namespace password_generation 61 } // namespace password_generation
62 } // namespace autofill 62 } // namespace autofill
OLDNEW
« 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