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 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 // observed while the screen is dimmed or soon after the screen has been turned | 731 // observed while the screen is dimmed or soon after the screen has been turned |
732 // off. Values are limited to a minimum of 1.0. | 732 // off. Values are limited to a minimum of 1.0. |
733 const char kPowerUserActivityScreenDimDelayFactor[] = | 733 const char kPowerUserActivityScreenDimDelayFactor[] = |
734 "power.user_activity_screen_dim_delay_factor"; | 734 "power.user_activity_screen_dim_delay_factor"; |
735 | 735 |
736 // Whether the power management delays should start running only after the first | 736 // Whether the power management delays should start running only after the first |
737 // user activity has been observed in a session. | 737 // user activity has been observed in a session. |
738 const char kPowerWaitForInitialUserActivity[] = | 738 const char kPowerWaitForInitialUserActivity[] = |
739 "power.wait_for_initial_user_activity"; | 739 "power.wait_for_initial_user_activity"; |
740 | 740 |
| 741 // Boolean controlling whether the panel backlight should be forced to a |
| 742 // nonzero level when user activity is observed. |
| 743 const char kPowerForceNonzeroBrightnessForUserActivity[] = |
| 744 "power.force_nonzero_brightness_for_user_activity"; |
| 745 |
741 // The URL from which the Terms of Service can be downloaded. The value is only | 746 // The URL from which the Terms of Service can be downloaded. The value is only |
742 // honored for public accounts. | 747 // honored for public accounts. |
743 const char kTermsOfServiceURL[] = "terms_of_service.url"; | 748 const char kTermsOfServiceURL[] = "terms_of_service.url"; |
744 | 749 |
745 // Indicates that the Profile has made navigations that used a certificate | 750 // Indicates that the Profile has made navigations that used a certificate |
746 // installed by the system administrator. If that is true then the local cache | 751 // installed by the system administrator. If that is true then the local cache |
747 // of remote data is tainted (e.g. shared scripts), and future navigations | 752 // of remote data is tainted (e.g. shared scripts), and future navigations |
748 // show a warning indicating that the organization may track the browsing | 753 // show a warning indicating that the organization may track the browsing |
749 // session. | 754 // session. |
750 const char kUsedPolicyCertificatesOnce[] = "used_policy_certificates_once"; | 755 const char kUsedPolicyCertificatesOnce[] = "used_policy_certificates_once"; |
(...skipping 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2278 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2283 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2279 | 2284 |
2280 // Last user's interaction with the password bubble. | 2285 // Last user's interaction with the password bubble. |
2281 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2286 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2282 | 2287 |
2283 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2288 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2284 const char kRecoveryComponentNeedsElevation[] = | 2289 const char kRecoveryComponentNeedsElevation[] = |
2285 "recovery_component.needs_elevation"; | 2290 "recovery_component.needs_elevation"; |
2286 | 2291 |
2287 } // namespace prefs | 2292 } // namespace prefs |
OLD | NEW |