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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
854 const char kPowerUseVideoActivity[] = "power.use_video_activity"; | 854 const char kPowerUseVideoActivity[] = "power.use_video_activity"; |
855 | 855 |
856 // Amount by which the idle delay should be scaled while the system is in | 856 // Amount by which the idle delay should be scaled while the system is in |
857 // presentation mode. Values are limited to a minimum of 1.0. | 857 // presentation mode. Values are limited to a minimum of 1.0. |
858 const char kPowerPresentationIdleDelayFactor[] = | 858 const char kPowerPresentationIdleDelayFactor[] = |
859 "power.presentation_idle_delay_factor"; | 859 "power.presentation_idle_delay_factor"; |
860 | 860 |
861 // The URL from which the Terms of Service can be downloaded. The value is only | 861 // The URL from which the Terms of Service can be downloaded. The value is only |
862 // honored for public accounts. | 862 // honored for public accounts. |
863 const char kTermsOfServiceURL[] = "terms_of_service.url"; | 863 const char kTermsOfServiceURL[] = "terms_of_service.url"; |
864 | |
865 // Indicates that the Profile has made navigations that used a certificate | |
pneubeck (no reviews)
2013/03/26 10:01:25
should be "CA certificate"?
Joao da Silva
2013/03/31 19:22:14
Also works for server certificates. The administra
| |
866 // installed by the system administrator. If that is true then the local cache | |
867 // of remote data is tainted (e.g. shared scripts), and future navigations | |
868 // show a warning indicating that the organization may track the browsing | |
869 // session. | |
870 const char kUsedPolicyCertificatesOnce[] = "used_policy_certificates_once"; | |
864 #endif // defined(OS_CHROMEOS) | 871 #endif // defined(OS_CHROMEOS) |
865 | 872 |
866 // The disabled messages in IPC logging. | 873 // The disabled messages in IPC logging. |
867 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 874 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
868 | 875 |
869 // A boolean pref set to true if a Home button to open the Home pages should be | 876 // A boolean pref set to true if a Home button to open the Home pages should be |
870 // visible on the toolbar. | 877 // visible on the toolbar. |
871 const char kShowHomeButton[] = "browser.show_home_button"; | 878 const char kShowHomeButton[] = "browser.show_home_button"; |
872 | 879 |
873 // A string value which saves short list of recently user selected encodings | 880 // A string value which saves short list of recently user selected encodings |
(...skipping 1476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2350 const char kRLZBrand[] = "rlz.brand"; | 2357 const char kRLZBrand[] = "rlz.brand"; |
2351 // Whether RLZ pings are disabled. | 2358 // Whether RLZ pings are disabled. |
2352 const char kRLZDisabled[] = "rlz.disabled"; | 2359 const char kRLZDisabled[] = "rlz.disabled"; |
2353 #endif | 2360 #endif |
2354 | 2361 |
2355 // The directory in user data dir that contains the profile to be used with the | 2362 // The directory in user data dir that contains the profile to be used with the |
2356 // app launcher. | 2363 // app launcher. |
2357 extern const char kAppListProfile[] = "app_list.profile"; | 2364 extern const char kAppListProfile[] = "app_list.profile"; |
2358 | 2365 |
2359 } // namespace prefs | 2366 } // namespace prefs |
OLD | NEW |