| 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 2104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2115 "device_robot_refresh_token.any-api"; | 2115 "device_robot_refresh_token.any-api"; |
| 2116 | 2116 |
| 2117 // Device requisition for enterprise enrollment. | 2117 // Device requisition for enterprise enrollment. |
| 2118 const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition"; | 2118 const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition"; |
| 2119 | 2119 |
| 2120 // Whether to automatically start the enterprise enrollment step during OOBE. | 2120 // Whether to automatically start the enterprise enrollment step during OOBE. |
| 2121 const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start"; | 2121 const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start"; |
| 2122 | 2122 |
| 2123 // Whether the user may exit enrollment. | 2123 // Whether the user may exit enrollment. |
| 2124 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit"; | 2124 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit"; |
| 2125 |
| 2126 // Dictionary of per-user Least Recently Used input method (used at login |
| 2127 // screen). |
| 2128 extern const char kUsersLRUInputMethod[] = "UsersLRUInputMethod"; |
| 2125 #endif | 2129 #endif |
| 2126 | 2130 |
| 2127 // Whether there is a Flash version installed that supports clearing LSO data. | 2131 // Whether there is a Flash version installed that supports clearing LSO data. |
| 2128 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 2132 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 2129 | 2133 |
| 2130 // Whether we should show Pepper Flash-specific settings. | 2134 // Whether we should show Pepper Flash-specific settings. |
| 2131 const char kPepperFlashSettingsEnabled[] = | 2135 const char kPepperFlashSettingsEnabled[] = |
| 2132 "browser.pepper_flash_settings_enabled"; | 2136 "browser.pepper_flash_settings_enabled"; |
| 2133 | 2137 |
| 2134 // String which specifies where to store the disk cache. | 2138 // String which specifies where to store the disk cache. |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2496 | 2500 |
| 2497 // How often the bubble has been shown. | 2501 // How often the bubble has been shown. |
| 2498 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2502 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
| 2499 | 2503 |
| 2500 // A string pref for storing the salt used to compute the pepper device ID. | 2504 // A string pref for storing the salt used to compute the pepper device ID. |
| 2501 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2505 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
| 2502 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2506 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
| 2503 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2507 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
| 2504 | 2508 |
| 2505 } // namespace prefs | 2509 } // namespace prefs |
| OLD | NEW |