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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0ea5f2cba1f6a3595fb188f0a958e159b4ba08df |
--- /dev/null |
+++ b/chrome/browser/chromeos/cros/update_library.cc |
@@ -0,0 +1,68 @@ |
+// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/chromeos/cros/update_library.h" |
+ |
+#include "base/message_loop.h" |
+#include "base/string_util.h" |
+#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() |
+ : status_connection_(NULL) { |
+ if (CrosLibrary::Get()->EnsureLoaded()) { |
+ Init(); |
+ } |
+} |
+ |
+UpdateLibraryImpl::~UpdateLibraryImpl() { |
+ if (status_connection_) { |
+ DisconnectUpdateProgress(status_connection_); |
+ } |
+} |
+ |
+void UpdateLibraryImpl::AddObserver(Observer* observer) { |
+ observers_.AddObserver(observer); |
+} |
+ |
+void UpdateLibraryImpl::RemoveObserver(Observer* observer) { |
+ observers_.RemoveObserver(observer); |
+} |
+ |
+const UpdateLibrary::Status& UpdateLibraryImpl::status() const { |
+ return status_; |
+} |
+ |
+// static |
+void UpdateLibraryImpl::ChangedHandler(void* object, |
+ const UpdateProgress& status) { |
+ UpdateLibraryImpl* power = static_cast<UpdateLibraryImpl*>(object); |
+ power->UpdateStatus(Status(status)); |
+} |
+ |
+void UpdateLibraryImpl::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; |
+ } |
+ |
+ status_ = status; |
+ FOR_EACH_OBSERVER(Observer, observers_, Changed(this)); |
+} |
+ |
+} // namespace chromeos |
+ |