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

Unified Diff: chrome/browser/chromeos/update_observer.h

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/update_browsertest.cc ('k') | chrome/browser/chromeos/update_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/update_observer.h
diff --git a/chrome/browser/chromeos/update_observer.h b/chrome/browser/chromeos/update_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..e19995804fdb13b1df32fac79ef1b8f395225f7f
--- /dev/null
+++ b/chrome/browser/chromeos/update_observer.h
@@ -0,0 +1,37 @@
+// Copyright (c) 2010 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.
+
+#ifndef CHROME_BROWSER_CHROMEOS_UPDATE_OBSERVER_H_
+#define CHROME_BROWSER_CHROMEOS_UPDATE_OBSERVER_H_
+
+#include "base/basictypes.h"
+#include "base/time.h"
+#include "chrome/browser/chromeos/cros/update_library.h"
+#include "chrome/browser/chromeos/notifications/system_notification.h"
+
+class Profile;
+
+namespace chromeos {
+
+// The update observer displays a system notification when the an update is
+// available.
+
+class UpdateObserver : public UpdateLibrary::Observer {
+ public:
+ explicit UpdateObserver(Profile* profile);
+ virtual ~UpdateObserver();
+
+ private:
+ virtual void Changed(UpdateLibrary* object);
+
+ SystemNotification notification_;
+ int progress_; // Last displayed remaining time in minutes
+
+ DISALLOW_COPY_AND_ASSIGN(UpdateObserver);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_UPDATE_OBSERVER_H_
+
« no previous file with comments | « chrome/browser/chromeos/update_browsertest.cc ('k') | chrome/browser/chromeos/update_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698