Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Unified Diff: chrome/browser/chromeos/cros/power_library.cc

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/cros/power_library.h ('k') | chrome/browser/chromeos/cros/screen_lock_library.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/power_library.cc
diff --git a/chrome/browser/chromeos/cros/power_library.cc b/chrome/browser/chromeos/cros/power_library.cc
index 42978aa10ca0ac17150b8ec51cb6da5b4dc014bd..220cd4e353666b373d009535ca415a307e5fa9cf 100644
--- a/chrome/browser/chromeos/cros/power_library.cc
+++ b/chrome/browser/chromeos/cros/power_library.cc
@@ -9,87 +9,129 @@
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/chromeos/cros/cros_library.h"
-// Allows InvokeLater without adding refcounting. This class is a Singleton and
-// won't be deleted until it's last InvokeLater is run.
-DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::PowerLibraryImpl);
-
namespace chromeos {
-PowerLibraryImpl::PowerLibraryImpl()
- : power_status_connection_(NULL),
- status_(chromeos::PowerStatus()) {
- if (CrosLibrary::Get()->EnsureLoaded()) {
- Init();
+class PowerLibraryImpl : public PowerLibrary {
+ public:
+ PowerLibraryImpl()
+ : power_status_connection_(NULL),
+ status_(chromeos::PowerStatus()) {
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ Init();
+ }
}
-}
-PowerLibraryImpl::~PowerLibraryImpl() {
- if (power_status_connection_) {
- chromeos::DisconnectPowerStatus(power_status_connection_);
+ ~PowerLibraryImpl() {
+ if (power_status_connection_) {
+ chromeos::DisconnectPowerStatus(power_status_connection_);
+ }
}
-}
-void PowerLibraryImpl::AddObserver(Observer* observer) {
- observers_.AddObserver(observer);
-}
+ void AddObserver(Observer* observer) {
+ observers_.AddObserver(observer);
+ }
-void PowerLibraryImpl::RemoveObserver(Observer* observer) {
- observers_.RemoveObserver(observer);
-}
+ void RemoveObserver(Observer* observer) {
+ observers_.RemoveObserver(observer);
+ }
-bool PowerLibraryImpl::line_power_on() const {
- return status_.line_power_on;
-}
+ bool line_power_on() const {
+ return status_.line_power_on;
+ }
-bool PowerLibraryImpl::battery_is_present() const {
- return status_.battery_is_present;
-}
+ bool battery_is_present() const {
+ return status_.battery_is_present;
+ }
-bool PowerLibraryImpl::battery_fully_charged() const {
- return status_.battery_state == chromeos::BATTERY_STATE_FULLY_CHARGED;
-}
+ bool battery_fully_charged() const {
+ return status_.battery_state == chromeos::BATTERY_STATE_FULLY_CHARGED;
+ }
-double PowerLibraryImpl::battery_percentage() const {
- return status_.battery_percentage;
-}
+ double battery_percentage() const {
+ return status_.battery_percentage;
+ }
-base::TimeDelta PowerLibraryImpl::battery_time_to_empty() const {
- return base::TimeDelta::FromSeconds(status_.battery_time_to_empty);
-}
+ base::TimeDelta battery_time_to_empty() const {
+ return base::TimeDelta::FromSeconds(status_.battery_time_to_empty);
+ }
-base::TimeDelta PowerLibraryImpl::battery_time_to_full() const {
- return base::TimeDelta::FromSeconds(status_.battery_time_to_full);
-}
+ base::TimeDelta battery_time_to_full() const {
+ return base::TimeDelta::FromSeconds(status_.battery_time_to_full);
+ }
-// static
-void PowerLibraryImpl::PowerStatusChangedHandler(void* object,
- const chromeos::PowerStatus& status) {
- PowerLibraryImpl* power = static_cast<PowerLibraryImpl*>(object);
- power->UpdatePowerStatus(status);
-}
+ private:
+ static void PowerStatusChangedHandler(void* object,
+ const chromeos::PowerStatus& status) {
+ PowerLibraryImpl* power = static_cast<PowerLibraryImpl*>(object);
+ power->UpdatePowerStatus(status);
+ }
-void PowerLibraryImpl::Init() {
- power_status_connection_ = chromeos::MonitorPowerStatus(
- &PowerStatusChangedHandler, this);
-}
+ void Init() {
+ power_status_connection_ = chromeos::MonitorPowerStatus(
+ &PowerStatusChangedHandler, this);
+ }
-void PowerLibraryImpl::UpdatePowerStatus(const chromeos::PowerStatus& status) {
- // Make sure we run on UI thread.
- if (!ChromeThread::CurrentlyOn(ChromeThread::UI)) {
- ChromeThread::PostTask(
- ChromeThread::UI, FROM_HERE,
- NewRunnableMethod(this, &PowerLibraryImpl::UpdatePowerStatus, status));
- return;
+ void UpdatePowerStatus(const chromeos::PowerStatus& status) {
+ // Make sure we run on UI thread.
+ if (!ChromeThread::CurrentlyOn(ChromeThread::UI)) {
+ ChromeThread::PostTask(
+ ChromeThread::UI, FROM_HERE,
+ NewRunnableMethod(
+ this, &PowerLibraryImpl::UpdatePowerStatus, status));
+ return;
+ }
+
+ DLOG(INFO) << "Power" <<
+ " lpo=" << status.line_power_on <<
+ " sta=" << status.battery_state <<
+ " per=" << status.battery_percentage <<
+ " tte=" << status.battery_time_to_empty <<
+ " ttf=" << status.battery_time_to_full;
+ status_ = status;
+ FOR_EACH_OBSERVER(Observer, observers_, PowerChanged(this));
}
- DLOG(INFO) << "Power" <<
- " lpo=" << status.line_power_on <<
- " sta=" << status.battery_state <<
- " per=" << status.battery_percentage <<
- " tte=" << status.battery_time_to_empty <<
- " ttf=" << status.battery_time_to_full;
- status_ = status;
- FOR_EACH_OBSERVER(Observer, observers_, PowerChanged(this));
+ ObserverList<Observer> observers_;
+
+ // A reference to the battery power api, to allow callbacks when the battery
+ // status changes.
+ chromeos::PowerStatusConnection power_status_connection_;
+
+ // The latest power status.
+ chromeos::PowerStatus status_;
+
+ DISALLOW_COPY_AND_ASSIGN(PowerLibraryImpl);
+};
+
+class PowerLibraryStubImpl : public PowerLibrary {
+ public:
+ PowerLibraryStubImpl() {}
+ ~PowerLibraryStubImpl() {}
+ void AddObserver(Observer* observer) {}
+ void RemoveObserver(Observer* observer) {}
+ bool line_power_on() const { return false; }
+ bool battery_is_present() const { return false; }
+ bool battery_fully_charged() const { return false; }
+ double battery_percentage() const { return false; }
+ base::TimeDelta battery_time_to_empty() const {
+ return base::TimeDelta::FromSeconds(0);
+ }
+ base::TimeDelta battery_time_to_full() const {
+ return base::TimeDelta::FromSeconds(0);
+ }
+};
+
+// static
+PowerLibrary* PowerLibrary::GetImpl(bool stub) {
+ if (stub)
+ return new PowerLibraryStubImpl();
+ else
+ return new PowerLibraryImpl();
}
} // namespace chromeos
+
+// Allows InvokeLater without adding refcounting. This class is a Singleton and
+// won't be deleted until it's last InvokeLater is run.
+DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::PowerLibraryImpl);
+
« no previous file with comments | « chrome/browser/chromeos/cros/power_library.h ('k') | chrome/browser/chromeos/cros/screen_lock_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698