| 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 1492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2369 // the time of the last ping. | 2376 // the time of the last ping. |
| 2370 extern const char kAppListLaunchCount[] = "app_list.launch_count"; | 2377 extern const char kAppListLaunchCount[] = "app_list.launch_count"; |
| 2371 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; | 2378 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; |
| 2372 | 2379 |
| 2373 // The number of times the an app was launched from the app launcher since last | 2380 // The number of times the an app was launched from the app launcher since last |
| 2374 // ping and the time of the last ping. | 2381 // ping and the time of the last ping. |
| 2375 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2382 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
| 2376 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2383 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
| 2377 | 2384 |
| 2378 } // namespace prefs | 2385 } // namespace prefs |
| OLD | NEW |