| 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 #ifndef ASH_WM_POWER_BUTTON_CONTROLLER_H_ | 5 #ifndef ASH_WM_POWER_BUTTON_CONTROLLER_H_ |
| 6 #define ASH_WM_POWER_BUTTON_CONTROLLER_H_ | 6 #define ASH_WM_POWER_BUTTON_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/wm/session_state_animator.h" | 9 #include "ash/wm/session_state_animator.h" |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 // Called when the current screen brightness changes. | 50 // Called when the current screen brightness changes. |
| 51 void OnScreenBrightnessChanged(double percent); | 51 void OnScreenBrightnessChanged(double percent); |
| 52 | 52 |
| 53 // Called when the power or lock buttons are pressed or released. | 53 // Called when the power or lock buttons are pressed or released. |
| 54 void OnPowerButtonEvent(bool down, const base::TimeTicks& timestamp); | 54 void OnPowerButtonEvent(bool down, const base::TimeTicks& timestamp); |
| 55 void OnLockButtonEvent(bool down, const base::TimeTicks& timestamp); | 55 void OnLockButtonEvent(bool down, const base::TimeTicks& timestamp); |
| 56 | 56 |
| 57 #if defined(OS_CHROMEOS) && defined(USE_X11) | 57 #if defined(OS_CHROMEOS) && defined(USE_X11) |
| 58 // Overriden from ui::OutputConfigurator::Observer: | 58 // Overriden from ui::OutputConfigurator::Observer: |
| 59 virtual void OnDisplayModeChanged(const std::vector< | 59 virtual void OnDisplayModeChanged( |
| 60 ui::OutputConfigurator::OutputSnapshot>& outputs) OVERRIDE; | 60 const ui::OutputConfigurator::DisplayStateList& outputs) OVERRIDE; |
| 61 #endif | 61 #endif |
| 62 | 62 |
| 63 private: | 63 private: |
| 64 friend class test::PowerButtonControllerTest; | 64 friend class test::PowerButtonControllerTest; |
| 65 | 65 |
| 66 // Are the power or lock buttons currently held? | 66 // Are the power or lock buttons currently held? |
| 67 bool power_button_down_; | 67 bool power_button_down_; |
| 68 bool lock_button_down_; | 68 bool lock_button_down_; |
| 69 | 69 |
| 70 // Has the screen brightness been reduced to 0%? | 70 // Has the screen brightness been reduced to 0%? |
| 71 bool brightness_is_zero_; | 71 bool brightness_is_zero_; |
| 72 | 72 |
| 73 // True if an internal display is off while an external display is on (e.g. | 73 // True if an internal display is off while an external display is on (e.g. |
| 74 // for Chrome OS's docked mode, where a Chromebook's lid is closed while an | 74 // for Chrome OS's docked mode, where a Chromebook's lid is closed while an |
| 75 // external display is connected). | 75 // external display is connected). |
| 76 bool internal_display_off_and_external_display_on_; | 76 bool internal_display_off_and_external_display_on_; |
| 77 | 77 |
| 78 // Was a command-line switch set telling us that we're running on hardware | 78 // Was a command-line switch set telling us that we're running on hardware |
| 79 // that misreports power button releases? | 79 // that misreports power button releases? |
| 80 bool has_legacy_power_button_; | 80 bool has_legacy_power_button_; |
| 81 | 81 |
| 82 LockStateController* controller_; // Not owned. | 82 LockStateController* controller_; // Not owned. |
| 83 | 83 |
| 84 DISALLOW_COPY_AND_ASSIGN(PowerButtonController); | 84 DISALLOW_COPY_AND_ASSIGN(PowerButtonController); |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 } // namespace ash | 87 } // namespace ash |
| 88 | 88 |
| 89 #endif // ASH_WM_POWER_BUTTON_CONTROLLER_H_ | 89 #endif // ASH_WM_POWER_BUTTON_CONTROLLER_H_ |
| OLD | NEW |