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