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 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1290 // List pref containing the system component ids which are not allowed to send | 1290 // List pref containing the system component ids which are not allowed to send |
1291 // notifications to the message center. | 1291 // notifications to the message center. |
1292 const char kMessageCenterDisabledSystemComponentIds[] = | 1292 const char kMessageCenterDisabledSystemComponentIds[] = |
1293 "message_center.disabled_system_component_ids"; | 1293 "message_center.disabled_system_component_ids"; |
1294 | 1294 |
1295 // List pref containing the system component ids which are allowed to send | 1295 // List pref containing the system component ids which are allowed to send |
1296 // notifications to the message center. | 1296 // notifications to the message center. |
1297 extern const char kMessageCenterEnabledSyncNotifierIds[] = | 1297 extern const char kMessageCenterEnabledSyncNotifierIds[] = |
1298 "message_center.enabled_sync_notifier_ids"; | 1298 "message_center.enabled_sync_notifier_ids"; |
1299 | 1299 |
| 1300 // Whether the user is allowed to enter fullscreen mode. |
| 1301 extern const char kFullscreenAllowed[] = "fullscreen.allowed"; |
| 1302 |
1300 // *************** LOCAL STATE *************** | 1303 // *************** LOCAL STATE *************** |
1301 // These are attached to the machine/installation | 1304 // These are attached to the machine/installation |
1302 | 1305 |
1303 // A pref to configure networks device-wide. Its value must be a list of | 1306 // A pref to configure networks device-wide. Its value must be a list of |
1304 // NetworkConfigurations according to the OpenNetworkConfiguration | 1307 // NetworkConfigurations according to the OpenNetworkConfiguration |
1305 // specification. | 1308 // specification. |
1306 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; | 1309 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; |
1307 | 1310 |
1308 // Directory of the last profile used. | 1311 // Directory of the last profile used. |
1309 const char kProfileLastUsed[] = "profile.last_used"; | 1312 const char kProfileLastUsed[] = "profile.last_used"; |
(...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2549 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2552 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2550 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2553 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2551 | 2554 |
2552 // A boolean per-profile pref that signals if the watchdog extension is | 2555 // A boolean per-profile pref that signals if the watchdog extension is |
2553 // installed and active. We need to know if the watchdog extension active for | 2556 // installed and active. We need to know if the watchdog extension active for |
2554 // ActivityLog initialization before the extension system is initialized. | 2557 // ActivityLog initialization before the extension system is initialized. |
2555 const char kWatchdogExtensionActive[] = | 2558 const char kWatchdogExtensionActive[] = |
2556 "profile.extensions.activity_log.watchdog_extension_active"; | 2559 "profile.extensions.activity_log.watchdog_extension_active"; |
2557 | 2560 |
2558 } // namespace prefs | 2561 } // namespace prefs |
OLD | NEW |