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 864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
875 // of remote data is tainted (e.g. shared scripts), and future navigations | 875 // of remote data is tainted (e.g. shared scripts), and future navigations |
876 // show a warning indicating that the organization may track the browsing | 876 // show a warning indicating that the organization may track the browsing |
877 // session. | 877 // session. |
878 const char kUsedPolicyCertificatesOnce[] = "used_policy_certificates_once"; | 878 const char kUsedPolicyCertificatesOnce[] = "used_policy_certificates_once"; |
879 | 879 |
880 // Indicates whether the remote attestation is enabled for the user. | 880 // Indicates whether the remote attestation is enabled for the user. |
881 const char kAttestationEnabled[] = "attestation.enabled"; | 881 const char kAttestationEnabled[] = "attestation.enabled"; |
882 // The list of extensions allowed to use the platformKeysPrivate API for | 882 // The list of extensions allowed to use the platformKeysPrivate API for |
883 // remote attestation. | 883 // remote attestation. |
884 const char kAttestationExtensionWhitelist[] = "attestation.extension_whitelist"; | 884 const char kAttestationExtensionWhitelist[] = "attestation.extension_whitelist"; |
| 885 |
| 886 // A boolean pref indicating whether the projection touch HUD is enabled or not. |
| 887 const char kTouchHudProjectionEnabled[] = "touch_hud.projection_enabled"; |
885 #endif // defined(OS_CHROMEOS) | 888 #endif // defined(OS_CHROMEOS) |
886 | 889 |
887 // The disabled messages in IPC logging. | 890 // The disabled messages in IPC logging. |
888 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 891 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
889 | 892 |
890 // A boolean pref set to true if a Home button to open the Home pages should be | 893 // A boolean pref set to true if a Home button to open the Home pages should be |
891 // visible on the toolbar. | 894 // visible on the toolbar. |
892 const char kShowHomeButton[] = "browser.show_home_button"; | 895 const char kShowHomeButton[] = "browser.show_home_button"; |
893 | 896 |
894 // A string value which saves short list of recently user selected encodings | 897 // A string value which saves short list of recently user selected encodings |
(...skipping 1599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2494 | 2497 |
2495 // How often the bubble has been shown. | 2498 // How often the bubble has been shown. |
2496 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; | 2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; |
2497 | 2500 |
2498 // A string pref for storing the salt used to compute the pepper device ID. | 2501 // A string pref for storing the salt used to compute the pepper device ID. |
2499 const char kDRMSalt[] = "settings.privacy.drm_salt"; | 2502 const char kDRMSalt[] = "settings.privacy.drm_salt"; |
2500 // A boolean pref that enables the (private) pepper GetDeviceID() call. | 2503 // A boolean pref that enables the (private) pepper GetDeviceID() call. |
2501 const char kEnableDRM[] = "settings.privacy.drm_enabled"; | 2504 const char kEnableDRM[] = "settings.privacy.drm_enabled"; |
2502 | 2505 |
2503 } // namespace prefs | 2506 } // namespace prefs |
OLD | NEW |