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 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 | 729 |
730 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 730 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
731 const char kDisable3DAPIs[] = "disable_3d_apis"; | 731 const char kDisable3DAPIs[] = "disable_3d_apis"; |
732 | 732 |
733 // Whether to enable hyperlink auditing ("<a ping>"). | 733 // Whether to enable hyperlink auditing ("<a ping>"). |
734 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; | 734 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
735 | 735 |
736 // Whether to enable sending referrers. | 736 // Whether to enable sending referrers. |
737 const char kEnableReferrers[] = "enable_referrers"; | 737 const char kEnableReferrers[] = "enable_referrers"; |
738 | 738 |
| 739 #if defined(OS_MACOSX) |
| 740 // Whether presentation mode is enabled for fullscreen (used on Lion only). |
| 741 const char kPresentationModeEnabled[] = "presentation_mode_enabled"; |
| 742 #endif |
| 743 |
739 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 744 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
740 // The local profile id for this profile. | 745 // The local profile id for this profile. |
741 const char kLocalProfileId[] = "profile.local_profile_id"; | 746 const char kLocalProfileId[] = "profile.local_profile_id"; |
742 | 747 |
743 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged | 748 // Whether passwords in external services (e.g. GNOME Keyring) have been tagged |
744 // with the local profile id yet. (Used for migrating to tagged passwords.) | 749 // with the local profile id yet. (Used for migrating to tagged passwords.) |
745 const char kPasswordsUseLocalProfileId[] = | 750 const char kPasswordsUseLocalProfileId[] = |
746 "profile.passwords_use_local_profile_id"; | 751 "profile.passwords_use_local_profile_id"; |
747 #endif | 752 #endif |
748 | 753 |
(...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1441 // Whether user-specified handlers for protocols and content types can be | 1446 // Whether user-specified handlers for protocols and content types can be |
1442 // specified. | 1447 // specified. |
1443 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1448 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
1444 | 1449 |
1445 // Integers that specify the policy refresh rate for device- and user-policy in | 1450 // Integers that specify the policy refresh rate for device- and user-policy in |
1446 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1451 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
1447 // by the cloud policy subsystem. | 1452 // by the cloud policy subsystem. |
1448 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1453 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
1449 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1454 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1450 } // namespace prefs | 1455 } // namespace prefs |
OLD | NEW |