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

Unified Diff: chrome/browser/chromeos/cros/update_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
Index: chrome/browser/chromeos/cros/update_library.cc
diff --git a/chrome/browser/chromeos/cros/update_library.cc b/chrome/browser/chromeos/cros/update_library.cc
index 320ab456895fd05c8d83ac5f0b5bf96a45ff9987..26a11eff01ad0896f806085126e4cfe2ba68506c 100644
--- a/chrome/browser/chromeos/cros/update_library.cc
+++ b/chrome/browser/chromeos/cros/update_library.cc
@@ -9,74 +9,114 @@
#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::UpdateLibraryImpl);
-
namespace chromeos {
-UpdateLibraryImpl::UpdateLibraryImpl()
+class UpdateLibraryImpl : public UpdateLibrary {
+ public:
+ UpdateLibraryImpl()
: status_connection_(NULL) {
- if (CrosLibrary::Get()->EnsureLoaded()) {
- Init();
+ if (CrosLibrary::Get()->EnsureLoaded()) {
+ Init();
+ }
}
-}
-UpdateLibraryImpl::~UpdateLibraryImpl() {
- if (status_connection_) {
- DisconnectUpdateProgress(status_connection_);
+ ~UpdateLibraryImpl() {
+ if (status_connection_) {
+ DisconnectUpdateProgress(status_connection_);
+ }
}
-}
-void UpdateLibraryImpl::AddObserver(Observer* observer) {
- observers_.AddObserver(observer);
-}
+ void AddObserver(Observer* observer) {
+ observers_.AddObserver(observer);
+ }
-void UpdateLibraryImpl::RemoveObserver(Observer* observer) {
- observers_.RemoveObserver(observer);
-}
+ void RemoveObserver(Observer* observer) {
+ observers_.RemoveObserver(observer);
+ }
-bool UpdateLibraryImpl::CheckForUpdate() {
- if (!CrosLibrary::Get()->EnsureLoaded())
- return false;
+ bool CheckForUpdate() {
+ if (!CrosLibrary::Get()->EnsureLoaded())
+ return false;
- return InitiateUpdateCheck();
-}
+ return InitiateUpdateCheck();
+ }
-bool UpdateLibraryImpl::RebootAfterUpdate() {
- if (!CrosLibrary::Get()->EnsureLoaded())
- return false;
+ bool RebootAfterUpdate() {
+ if (!CrosLibrary::Get()->EnsureLoaded())
+ return false;
- return RebootIfUpdated();
-}
+ return RebootIfUpdated();
+ }
-const UpdateLibrary::Status& UpdateLibraryImpl::status() const {
- return status_;
-}
+ const UpdateLibrary::Status& status() const {
+ return status_;
+ }
-// static
-void UpdateLibraryImpl::ChangedHandler(void* object,
- const UpdateProgress& status) {
- UpdateLibraryImpl* updater = static_cast<UpdateLibraryImpl*>(object);
- updater->UpdateStatus(Status(status));
-}
+ private:
+ static void ChangedHandler(void* object,
+ const UpdateProgress& status) {
+ UpdateLibraryImpl* updater = static_cast<UpdateLibraryImpl*>(object);
+ updater->UpdateStatus(Status(status));
+ }
-void UpdateLibraryImpl::Init() {
- status_connection_ = MonitorUpdateStatus(&ChangedHandler, this);
-}
+ void Init() {
+ status_connection_ = MonitorUpdateStatus(&ChangedHandler, this);
+ }
-void UpdateLibraryImpl::UpdateStatus(const Status& status) {
- // Make sure we run on UI thread.
- if (!ChromeThread::CurrentlyOn(ChromeThread::UI)) {
- ChromeThread::PostTask(
- ChromeThread::UI, FROM_HERE,
- NewRunnableMethod(this, &UpdateLibraryImpl::UpdateStatus, status));
- return;
+ void UpdateStatus(const Status& status) {
+ // Make sure we run on UI thread.
+ if (!ChromeThread::CurrentlyOn(ChromeThread::UI)) {
+ ChromeThread::PostTask(
+ ChromeThread::UI, FROM_HERE,
+ NewRunnableMethod(this, &UpdateLibraryImpl::UpdateStatus, status));
+ return;
+ }
+
+ status_ = status;
+ FOR_EACH_OBSERVER(Observer, observers_, UpdateStatusChanged(this));
}
- status_ = status;
- FOR_EACH_OBSERVER(Observer, observers_, UpdateStatusChanged(this));
+ ObserverList<Observer> observers_;
+
+ // A reference to the update api, to allow callbacks when the update
+ // status changes.
+ UpdateStatusConnection status_connection_;
+
+ // The latest power status.
+ Status status_;
+
+ DISALLOW_COPY_AND_ASSIGN(UpdateLibraryImpl);
+};
+
+class UpdateLibraryStubImpl : public UpdateLibrary {
+ public:
+ UpdateLibraryStubImpl() {}
+ ~UpdateLibraryStubImpl() {}
+ void AddObserver(Observer* observer) {}
+ void RemoveObserver(Observer* observer) {}
+ bool CheckForUpdate() { return false; }
+ bool RebootAfterUpdate() { return false; }
+ const UpdateLibrary::Status& status() const {
+ return status_;
+ }
+
+ private:
+ Status status_;
+
+ DISALLOW_COPY_AND_ASSIGN(UpdateLibraryStubImpl);
+};
+
+// static
+UpdateLibrary* UpdateLibrary::GetImpl(bool stub) {
+ if (stub)
+ return new UpdateLibraryStubImpl();
+ else
+ return new UpdateLibraryImpl();
}
} // 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::UpdateLibraryImpl);
+
« no previous file with comments | « chrome/browser/chromeos/cros/update_library.h ('k') | chrome/browser/geolocation/wifi_data_provider_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698