OLD | NEW |
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 2021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2032 | 2032 |
2033 // Device requisition for enterprise enrollment. | 2033 // Device requisition for enterprise enrollment. |
2034 const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition"; | 2034 const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition"; |
2035 | 2035 |
2036 // Whether to automatically start the enterprise enrollment step during OOBE. | 2036 // Whether to automatically start the enterprise enrollment step during OOBE. |
2037 const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start"; | 2037 const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start"; |
2038 | 2038 |
2039 // Whether the user may exit enrollment. | 2039 // Whether the user may exit enrollment. |
2040 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit"; | 2040 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit"; |
2041 | 2041 |
| 2042 // How many times HID detection OOBE dialog was shown. |
| 2043 const char kTimesHIDDialogShown[] = "HIDDialog.shown_how_many_times"; |
| 2044 |
2042 // Dictionary of per-user Least Recently Used input method (used at login | 2045 // Dictionary of per-user Least Recently Used input method (used at login |
2043 // screen). | 2046 // screen). |
2044 extern const char kUsersLRUInputMethod[] = "UsersLRUInputMethod"; | 2047 extern const char kUsersLRUInputMethod[] = "UsersLRUInputMethod"; |
2045 | 2048 |
2046 // A dictionary pref of the echo offer check flag. It sets offer info when | 2049 // A dictionary pref of the echo offer check flag. It sets offer info when |
2047 // an offer is checked. | 2050 // an offer is checked. |
2048 extern const char kEchoCheckedOffers[] = "EchoCheckedOffers"; | 2051 extern const char kEchoCheckedOffers[] = "EchoCheckedOffers"; |
2049 | 2052 |
2050 // Key name of a dictionary in local state to store cached multiprofle user | 2053 // Key name of a dictionary in local state to store cached multiprofle user |
2051 // behavior policy value. | 2054 // behavior policy value. |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2511 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2514 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2512 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2515 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2513 // title or an empty string if the bookmark node was removed. | 2516 // title or an empty string if the bookmark node was removed. |
2514 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2517 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2515 #endif | 2518 #endif |
2516 | 2519 |
2517 // Whether DNS Quick Check is disabled in proxy resolution. | 2520 // Whether DNS Quick Check is disabled in proxy resolution. |
2518 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2521 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2519 | 2522 |
2520 } // namespace prefs | 2523 } // namespace prefs |
OLD | NEW |