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

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

Issue 212233002: [Autofill] Add metrics to determine whether the system AddressBook is accessible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a typo Created 6 years, 9 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
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/autofill_pref_names.h" 5 #include "components/autofill/core/common/autofill_pref_names.h"
6 6
7 namespace autofill { 7 namespace autofill {
8 namespace prefs { 8 namespace prefs {
9 9
10 // Boolean that is true when auxiliary Autofill profiles are enabled. 10 // Boolean that is true when auxiliary Autofill profiles are enabled.
11 // Currently applies to Address Book "me" card on Mac. False on Win and Linux. 11 // Currently applies to Address Book "me" card on Mac. False on Win and Linux.
12 const char kAutofillAuxiliaryProfilesEnabled[] = 12 const char kAutofillAuxiliaryProfilesEnabled[] =
13 "autofill.auxiliary_profiles_enabled"; 13 "autofill.auxiliary_profiles_enabled";
14 14
15 // Boolean that is true when at least one read request for auxiliary Autofill
16 // profiles has been issued. Currently applies only to auxiliary profiles on
17 // Mac.
18 const char kAutofillAuxiliaryProfilesQueried[] =
19 "autofill.auxiliary_profiles_queried";
20
15 // Boolean that is true if Autofill is enabled and allowed to save profile data. 21 // Boolean that is true if Autofill is enabled and allowed to save profile data.
16 const char kAutofillEnabled[] = "autofill.enabled"; 22 const char kAutofillEnabled[] = "autofill.enabled";
17 23
18 // Double that indicates negative (for not matched forms) upload rate. 24 // Double that indicates negative (for not matched forms) upload rate.
19 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate"; 25 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate";
20 26
21 // Double that indicates positive (for matched forms) upload rate. 27 // Double that indicates positive (for matched forms) upload rate.
22 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate"; 28 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate";
23 29
24 } // namespace prefs 30 } // namespace prefs
25 } // namespace autofill 31 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/common/autofill_pref_names.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698