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