| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ | 5 #ifndef CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ |
| 6 #define CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ | 6 #define CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 power_manager::PowerManagementPolicy& policy() { return policy_; } | 27 power_manager::PowerManagementPolicy& policy() { return policy_; } |
| 28 int num_request_restart_calls() const { return num_request_restart_calls_; } | 28 int num_request_restart_calls() const { return num_request_restart_calls_; } |
| 29 int num_request_shutdown_calls() const { return num_request_shutdown_calls_; } | 29 int num_request_shutdown_calls() const { return num_request_shutdown_calls_; } |
| 30 int num_set_policy_calls() const { return num_set_policy_calls_; } | 30 int num_set_policy_calls() const { return num_set_policy_calls_; } |
| 31 int num_set_is_projecting_calls() const { | 31 int num_set_is_projecting_calls() const { |
| 32 return num_set_is_projecting_calls_; | 32 return num_set_is_projecting_calls_; |
| 33 } | 33 } |
| 34 bool is_projecting() const { return is_projecting_; } | 34 bool is_projecting() const { return is_projecting_; } |
| 35 | 35 |
| 36 // PowerManagerClient overrides | 36 // PowerManagerClient overrides |
| 37 virtual void Init(dbus::Bus* bus) OVERRIDE; | 37 virtual void Init(dbus::Bus* bus) override; |
| 38 virtual void AddObserver(Observer* observer) OVERRIDE; | 38 virtual void AddObserver(Observer* observer) override; |
| 39 virtual void RemoveObserver(Observer* observer) OVERRIDE; | 39 virtual void RemoveObserver(Observer* observer) override; |
| 40 virtual bool HasObserver(Observer* observer) OVERRIDE; | 40 virtual bool HasObserver(Observer* observer) override; |
| 41 virtual void DecreaseScreenBrightness(bool allow_off) OVERRIDE; | 41 virtual void DecreaseScreenBrightness(bool allow_off) override; |
| 42 virtual void IncreaseScreenBrightness() OVERRIDE; | 42 virtual void IncreaseScreenBrightness() override; |
| 43 virtual void SetScreenBrightnessPercent( | 43 virtual void SetScreenBrightnessPercent( |
| 44 double percent, bool gradual) OVERRIDE; | 44 double percent, bool gradual) override; |
| 45 virtual void GetScreenBrightnessPercent( | 45 virtual void GetScreenBrightnessPercent( |
| 46 const GetScreenBrightnessPercentCallback& callback) OVERRIDE; | 46 const GetScreenBrightnessPercentCallback& callback) override; |
| 47 virtual void DecreaseKeyboardBrightness() OVERRIDE; | 47 virtual void DecreaseKeyboardBrightness() override; |
| 48 virtual void IncreaseKeyboardBrightness() OVERRIDE; | 48 virtual void IncreaseKeyboardBrightness() override; |
| 49 virtual void RequestStatusUpdate() OVERRIDE; | 49 virtual void RequestStatusUpdate() override; |
| 50 virtual void RequestSuspend() OVERRIDE; | 50 virtual void RequestSuspend() override; |
| 51 virtual void RequestRestart() OVERRIDE; | 51 virtual void RequestRestart() override; |
| 52 virtual void RequestShutdown() OVERRIDE; | 52 virtual void RequestShutdown() override; |
| 53 virtual void NotifyUserActivity( | 53 virtual void NotifyUserActivity( |
| 54 power_manager::UserActivityType type) OVERRIDE; | 54 power_manager::UserActivityType type) override; |
| 55 virtual void NotifyVideoActivity(bool is_fullscreen) OVERRIDE; | 55 virtual void NotifyVideoActivity(bool is_fullscreen) override; |
| 56 virtual void SetPolicy( | 56 virtual void SetPolicy( |
| 57 const power_manager::PowerManagementPolicy& policy) OVERRIDE; | 57 const power_manager::PowerManagementPolicy& policy) override; |
| 58 virtual void SetIsProjecting(bool is_projecting) OVERRIDE; | 58 virtual void SetIsProjecting(bool is_projecting) override; |
| 59 virtual base::Closure GetSuspendReadinessCallback() OVERRIDE; | 59 virtual base::Closure GetSuspendReadinessCallback() override; |
| 60 virtual int GetNumPendingSuspendReadinessCallbacks() OVERRIDE; | 60 virtual int GetNumPendingSuspendReadinessCallbacks() override; |
| 61 | 61 |
| 62 // Emulates the power manager announcing that the system is starting or | 62 // Emulates the power manager announcing that the system is starting or |
| 63 // completing a suspend attempt. | 63 // completing a suspend attempt. |
| 64 void SendSuspendImminent(); | 64 void SendSuspendImminent(); |
| 65 void SendSuspendDone(); | 65 void SendSuspendDone(); |
| 66 void SendDarkSuspendImminent(); | 66 void SendDarkSuspendImminent(); |
| 67 | 67 |
| 68 // Notifies observers that the power button has been pressed or released. | 68 // Notifies observers that the power button has been pressed or released. |
| 69 void SendPowerButtonEvent(bool down, const base::TimeTicks& timestamp); | 69 void SendPowerButtonEvent(bool down, const base::TimeTicks& timestamp); |
| 70 | 70 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 89 | 89 |
| 90 // Last projecting state set in SetIsProjecting(). | 90 // Last projecting state set in SetIsProjecting(). |
| 91 bool is_projecting_; | 91 bool is_projecting_; |
| 92 | 92 |
| 93 DISALLOW_COPY_AND_ASSIGN(FakePowerManagerClient); | 93 DISALLOW_COPY_AND_ASSIGN(FakePowerManagerClient); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace chromeos | 96 } // namespace chromeos |
| 97 | 97 |
| 98 #endif // CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ | 98 #endif // CHROMEOS_DBUS_FAKE_POWER_MANAGER_CLIENT_H_ |
| OLD | NEW |