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

Side by Side Diff: chrome/common/pref_names.cc

Issue 276433003: UMA metrics added for HID detection dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Switched to bool histogram. Added Continue-scenario and HIDShows per OOBE completion histograms. Created 6 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 2047 matching lines...) Expand 10 before | Expand all | Expand 10 after
2058 2058
2059 // Device requisition for enterprise enrollment. 2059 // Device requisition for enterprise enrollment.
2060 const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition"; 2060 const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition";
2061 2061
2062 // Whether to automatically start the enterprise enrollment step during OOBE. 2062 // Whether to automatically start the enterprise enrollment step during OOBE.
2063 const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start"; 2063 const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start";
2064 2064
2065 // Whether the user may exit enrollment. 2065 // Whether the user may exit enrollment.
2066 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit"; 2066 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit";
2067 2067
2068 // How many times HID detection OOBE dialog was shown.
2069 const char kTimesHIDDialogShown[] = "HIDDialog.shown_how_many";
Mattias Nissler (ping if slow) 2014/05/12 11:10:02 nit: Maybe shown_how_many_times or shown_how_often
merkulova 2014/05/13 07:18:01 Done.
2070
2068 // Dictionary of per-user Least Recently Used input method (used at login 2071 // Dictionary of per-user Least Recently Used input method (used at login
2069 // screen). 2072 // screen).
2070 extern const char kUsersLRUInputMethod[] = "UsersLRUInputMethod"; 2073 extern const char kUsersLRUInputMethod[] = "UsersLRUInputMethod";
2071 2074
2072 // A dictionary pref of the echo offer check flag. It sets offer info when 2075 // A dictionary pref of the echo offer check flag. It sets offer info when
2073 // an offer is checked. 2076 // an offer is checked.
2074 extern const char kEchoCheckedOffers[] = "EchoCheckedOffers"; 2077 extern const char kEchoCheckedOffers[] = "EchoCheckedOffers";
2075 2078
2076 // Key name of a dictionary in local state to store cached multiprofle user 2079 // Key name of a dictionary in local state to store cached multiprofle user
2077 // behavior policy value. 2080 // behavior policy value.
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
2534 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2537 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2535 // given by the PartnerBookmarksProvider and either the user-visible renamed 2538 // given by the PartnerBookmarksProvider and either the user-visible renamed
2536 // title or an empty string if the bookmark node was removed. 2539 // title or an empty string if the bookmark node was removed.
2537 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2540 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2538 #endif 2541 #endif
2539 2542
2540 // Whether DNS Quick Check is disabled in proxy resolution. 2543 // Whether DNS Quick Check is disabled in proxy resolution.
2541 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2544 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2542 2545
2543 } // namespace prefs 2546 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698