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 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1305 | 1305 |
1306 // String pref for what version chrome was last time the extension prefs were | 1306 // String pref for what version chrome was last time the extension prefs were |
1307 // loaded. | 1307 // loaded. |
1308 const char kExtensionsLastChromeVersion[] = "extensions.last_chrome_version"; | 1308 const char kExtensionsLastChromeVersion[] = "extensions.last_chrome_version"; |
1309 | 1309 |
1310 // Boolean pref that determines whether the user can enter fullscreen mode. | 1310 // Boolean pref that determines whether the user can enter fullscreen mode. |
1311 // Disabling fullscreen mode also makes kiosk mode unavailable on desktop | 1311 // Disabling fullscreen mode also makes kiosk mode unavailable on desktop |
1312 // platforms. | 1312 // platforms. |
1313 extern const char kFullscreenAllowed[] = "fullscreen.allowed"; | 1313 extern const char kFullscreenAllowed[] = "fullscreen.allowed"; |
1314 | 1314 |
| 1315 // String that indicates if the Profile Reset prompt has already been shown to |
| 1316 // the user. Used both in user preferences and local state, in the latter, it is |
| 1317 // actually a dictionary that maps profile keys to before-mentioned strings. |
| 1318 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; |
| 1319 |
1315 // *************** LOCAL STATE *************** | 1320 // *************** LOCAL STATE *************** |
1316 // These are attached to the machine/installation | 1321 // These are attached to the machine/installation |
1317 | 1322 |
1318 // A pref to configure networks device-wide. Its value must be a list of | 1323 // A pref to configure networks device-wide. Its value must be a list of |
1319 // NetworkConfigurations according to the OpenNetworkConfiguration | 1324 // NetworkConfigurations according to the OpenNetworkConfiguration |
1320 // specification. | 1325 // specification. |
1321 // Currently, this pref is only used to store the policy. The user's | 1326 // Currently, this pref is only used to store the policy. The user's |
1322 // configuration is still stored in Shill. | 1327 // configuration is still stored in Shill. |
1323 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; | 1328 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; |
1324 | 1329 |
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2572 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2577 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2573 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2578 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2574 | 2579 |
2575 // A boolean per-profile pref that signals if the watchdog extension is | 2580 // A boolean per-profile pref that signals if the watchdog extension is |
2576 // installed and active. We need to know if the watchdog extension active for | 2581 // installed and active. We need to know if the watchdog extension active for |
2577 // ActivityLog initialization before the extension system is initialized. | 2582 // ActivityLog initialization before the extension system is initialized. |
2578 const char kWatchdogExtensionActive[] = | 2583 const char kWatchdogExtensionActive[] = |
2579 "profile.extensions.activity_log.watchdog_extension_active"; | 2584 "profile.extensions.activity_log.watchdog_extension_active"; |
2580 | 2585 |
2581 } // namespace prefs | 2586 } // namespace prefs |
OLD | NEW |