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

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

Issue 2859043: Added system notification for update_engine. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: . Created 10 years, 5 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/update_library.h ('k') | chrome/browser/chromeos/update_browsertest.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.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
+
« no previous file with comments | « chrome/browser/chromeos/cros/update_library.h ('k') | chrome/browser/chromeos/update_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698