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

Unified Diff: chrome/browser/chromeos/cros/update_library.h

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/system_library.cc ('k') | chrome/browser/chromeos/cros/update_library.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/update_library.h
diff --git a/chrome/browser/chromeos/cros/update_library.h b/chrome/browser/chromeos/cros/update_library.h
index 223426eb5bef48c6a41c04b98631f054191bbf6c..8fed2120bd286acb67271b7801c0cd3d1533308e 100644
--- a/chrome/browser/chromeos/cros/update_library.h
+++ b/chrome/browser/chromeos/cros/update_library.h
@@ -56,6 +56,8 @@ class UpdateLibrary {
virtual void UpdateStatusChanged(UpdateLibrary* library) = 0;
};
+// static UpdateLibrary* GetStubImplementation();
+
virtual ~UpdateLibrary() {}
virtual void AddObserver(Observer* observer) = 0;
virtual void RemoveObserver(Observer* observer) = 0;
@@ -67,44 +69,9 @@ class UpdateLibrary {
virtual bool RebootAfterUpdate() = 0;
virtual const Status& status() const = 0;
-};
-
-class UpdateLibraryImpl : public UpdateLibrary {
- public:
- UpdateLibraryImpl();
- virtual ~UpdateLibraryImpl();
-
- // UpdateLibrary overrides.
- virtual void AddObserver(Observer* observer);
- virtual void RemoveObserver(Observer* observer);
-
- virtual bool CheckForUpdate();
- virtual bool RebootAfterUpdate();
- virtual const Status& status() const;
-
- private:
-
- // This method is called when there's a change in status.
- // This method is called on a background thread.
- static void ChangedHandler(void* object, const UpdateProgress& status);
-
- // This methods starts the monitoring of power changes.
- void Init();
-
- // Called by the handler to update the power status.
- // This will notify all the Observers.
- void UpdateStatus(const Status& status);
-
- 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);
+ // Get library implementation.
+ static UpdateLibrary* GetImpl(bool stub);
};
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/cros/system_library.cc ('k') | chrome/browser/chromeos/cros/update_library.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698