| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 | 735 |
| 736 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 736 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
| 737 const char kDisable3DAPIs[] = "disable_3d_apis"; | 737 const char kDisable3DAPIs[] = "disable_3d_apis"; |
| 738 | 738 |
| 739 // Whether to enable hyperlink auditing ("<a ping>"). | 739 // Whether to enable hyperlink auditing ("<a ping>"). |
| 740 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; | 740 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
| 741 | 741 |
| 742 // Whether to enable sending referrers. | 742 // Whether to enable sending referrers. |
| 743 const char kEnableReferrers[] = "enable_referrers"; | 743 const char kEnableReferrers[] = "enable_referrers"; |
| 744 | 744 |
| 745 #if defined(OS_MACOSX) |
| 746 // Whether presentation mode is enabled for fullscreen (used on Lion only). |
| 747 const char kPresentationModeEnabled[] = "presentation_mode_enabled"; |
| 748 #endif |
| 749 |
| 745 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 750 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
| 746 // The local profile id for this profile. | 751 // The local profile id for this profile. |
| 747 const char kLocalProfileId[] = "profile.local_profile_id"; | 752 const char kLocalProfileId[] = "profile.local_profile_id"; |
| 748 | 753 |
| 749 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged | 754 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged |
| 750 // with the local profile id yet. (Used for migrating to tagged passwords.) | 755 // with the local profile id yet. (Used for migrating to tagged passwords.) |
| 751 const char kPasswordsUseLocalProfileId[] = | 756 const char kPasswordsUseLocalProfileId[] = |
| 752 "profile.passwords_use_local_profile_id"; | 757 "profile.passwords_use_local_profile_id"; |
| 753 #endif | 758 #endif |
| 754 | 759 |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1447 // Whether user-specified handlers for protocols and content types can be | 1452 // Whether user-specified handlers for protocols and content types can be |
| 1448 // specified. | 1453 // specified. |
| 1449 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1454 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
| 1450 | 1455 |
| 1451 // Integers that specify the policy refresh rate for device- and user-policy in | 1456 // Integers that specify the policy refresh rate for device- and user-policy in |
| 1452 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1457 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
| 1453 // by the cloud policy subsystem. | 1458 // by the cloud policy subsystem. |
| 1454 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1459 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 1455 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1460 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
| 1456 } // namespace prefs | 1461 } // namespace prefs |
| OLD | NEW |