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

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

Issue 1178683009: Change histogram.h includes to histogram_macros.h in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
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_macros.h"
10 #include "components/autofill/core/common/autofill_switches.h" 10 #include "components/autofill/core/common/autofill_switches.h"
11 11
12 namespace autofill { 12 namespace autofill {
13 namespace password_generation { 13 namespace password_generation {
14 14
15 PasswordGenerationActions::PasswordGenerationActions() 15 PasswordGenerationActions::PasswordGenerationActions()
16 : learn_more_visited(false), 16 : learn_more_visited(false),
17 password_accepted(false), 17 password_accepted(false),
18 password_edited(false), 18 password_edited(false),
19 password_regenerated(false) { 19 password_regenerated(false) {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 != "Disabled"; 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 | « components/autofill/core/browser/personal_data_manager_mac.mm ('k') | components/bookmarks/browser/bookmark_storage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698