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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 "power.battery_screen_dim_delay_ms"; | 708 "power.battery_screen_dim_delay_ms"; |
709 const char kPowerBatteryScreenOffDelayMs[] = | 709 const char kPowerBatteryScreenOffDelayMs[] = |
710 "power.battery_screen_off_delay_ms"; | 710 "power.battery_screen_off_delay_ms"; |
711 const char kPowerBatteryScreenLockDelayMs[] = | 711 const char kPowerBatteryScreenLockDelayMs[] = |
712 "power.battery_screen_lock_delay_ms"; | 712 "power.battery_screen_lock_delay_ms"; |
713 const char kPowerBatteryIdleWarningDelayMs[] = | 713 const char kPowerBatteryIdleWarningDelayMs[] = |
714 "power.battery_idle_warning_delay_ms"; | 714 "power.battery_idle_warning_delay_ms"; |
715 const char kPowerBatteryIdleDelayMs[] = | 715 const char kPowerBatteryIdleDelayMs[] = |
716 "power.battery_idle_delay_ms"; | 716 "power.battery_idle_delay_ms"; |
717 | 717 |
| 718 // Inactivity delays used to dim the screen or turn it off while the screen is |
| 719 // locked. |
| 720 const char kPowerLockScreenDimDelayMs[] = "power.lock_screen_dim_delay_ms"; |
| 721 const char kPowerLockScreenOffDelayMs[] = "power.lock_screen_off_delay_ms"; |
| 722 |
718 // Action that should be performed when the idle delay is reached while the | 723 // Action that should be performed when the idle delay is reached while the |
719 // system is on AC power or battery power. | 724 // system is on AC power or battery power. |
720 // Values are from the chromeos::PowerPolicyController::Action enum. | 725 // Values are from the chromeos::PowerPolicyController::Action enum. |
721 const char kPowerAcIdleAction[] = "power.ac_idle_action"; | 726 const char kPowerAcIdleAction[] = "power.ac_idle_action"; |
722 const char kPowerBatteryIdleAction[] = "power.battery_idle_action"; | 727 const char kPowerBatteryIdleAction[] = "power.battery_idle_action"; |
723 | 728 |
724 // Action that should be performed when the lid is closed. | 729 // Action that should be performed when the lid is closed. |
725 // Values are from the chromeos::PowerPolicyController::Action enum. | 730 // Values are from the chromeos::PowerPolicyController::Action enum. |
726 const char kPowerLidClosedAction[] = "power.lid_closed_action"; | 731 const char kPowerLidClosedAction[] = "power.lid_closed_action"; |
727 | 732 |
(...skipping 1566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2294 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; | 2299 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; |
2295 | 2300 |
2296 // Last user's interaction with the password bubble. | 2301 // Last user's interaction with the password bubble. |
2297 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; | 2302 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; |
2298 | 2303 |
2299 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. | 2304 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
2300 const char kRecoveryComponentNeedsElevation[] = | 2305 const char kRecoveryComponentNeedsElevation[] = |
2301 "recovery_component.needs_elevation"; | 2306 "recovery_component.needs_elevation"; |
2302 | 2307 |
2303 } // namespace prefs | 2308 } // namespace prefs |
OLD | NEW |