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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
857 const char kPowerUseVideoActivity[] = "power.use_video_activity"; | 857 const char kPowerUseVideoActivity[] = "power.use_video_activity"; |
858 | 858 |
859 // Amount by which the idle delay should be scaled while the system is in | 859 // Amount by which the idle delay should be scaled while the system is in |
860 // presentation mode. Values are limited to a minimum of 1.0. | 860 // presentation mode. Values are limited to a minimum of 1.0. |
861 const char kPowerPresentationIdleDelayFactor[] = | 861 const char kPowerPresentationIdleDelayFactor[] = |
862 "power.presentation_idle_delay_factor"; | 862 "power.presentation_idle_delay_factor"; |
863 | 863 |
864 // The URL from which the Terms of Service can be downloaded. The value is only | 864 // The URL from which the Terms of Service can be downloaded. The value is only |
865 // honored for public accounts. | 865 // honored for public accounts. |
866 const char kTermsOfServiceURL[] = "terms_of_service.url"; | 866 const char kTermsOfServiceURL[] = "terms_of_service.url"; |
| 867 |
| 868 // Indicates that the Profile has made navigations that used a certificate |
| 869 // installed by the system administrator. If that is true then the local cache |
| 870 // of remote data is tainted (e.g. shared scripts), and future navigations |
| 871 // show a warning indicating that the organization may track the browsing |
| 872 // session. |
| 873 const char kUsedPolicyCertificatesOnce[] = "used_policy_certificates_once"; |
867 #endif // defined(OS_CHROMEOS) | 874 #endif // defined(OS_CHROMEOS) |
868 | 875 |
869 // The disabled messages in IPC logging. | 876 // The disabled messages in IPC logging. |
870 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 877 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
871 | 878 |
872 // A boolean pref set to true if a Home button to open the Home pages should be | 879 // A boolean pref set to true if a Home button to open the Home pages should be |
873 // visible on the toolbar. | 880 // visible on the toolbar. |
874 const char kShowHomeButton[] = "browser.show_home_button"; | 881 const char kShowHomeButton[] = "browser.show_home_button"; |
875 | 882 |
876 // A string value which saves short list of recently user selected encodings | 883 // A string value which saves short list of recently user selected encodings |
(...skipping 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2359 const char kRLZBrand[] = "rlz.brand"; | 2366 const char kRLZBrand[] = "rlz.brand"; |
2360 // Whether RLZ pings are disabled. | 2367 // Whether RLZ pings are disabled. |
2361 const char kRLZDisabled[] = "rlz.disabled"; | 2368 const char kRLZDisabled[] = "rlz.disabled"; |
2362 #endif | 2369 #endif |
2363 | 2370 |
2364 // The directory in user data dir that contains the profile to be used with the | 2371 // The directory in user data dir that contains the profile to be used with the |
2365 // app launcher. | 2372 // app launcher. |
2366 extern const char kAppListProfile[] = "app_list.profile"; | 2373 extern const char kAppListProfile[] = "app_list.profile"; |
2367 | 2374 |
2368 } // namespace prefs | 2375 } // namespace prefs |
OLD | NEW |