OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_UPDATE_OBSERVER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_UPDATE_OBSERVER_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/time.h" |
| 10 #include "chrome/browser/chromeos/cros/update_library.h" |
| 11 #include "chrome/browser/chromeos/notifications/system_notification.h" |
| 12 |
| 13 class Profile; |
| 14 |
| 15 namespace chromeos { |
| 16 |
| 17 // The update observer displays a system notification when the an update is |
| 18 // available. |
| 19 |
| 20 class UpdateObserver : public UpdateLibrary::Observer { |
| 21 public: |
| 22 explicit UpdateObserver(Profile* profile); |
| 23 virtual ~UpdateObserver(); |
| 24 |
| 25 private: |
| 26 virtual void Changed(UpdateLibrary* object); |
| 27 |
| 28 SystemNotification notification_; |
| 29 int progress_; // Last displayed remaining time in minutes |
| 30 |
| 31 DISALLOW_COPY_AND_ASSIGN(UpdateObserver); |
| 32 }; |
| 33 |
| 34 } // namespace chromeos |
| 35 |
| 36 #endif // CHROME_BROWSER_CHROMEOS_UPDATE_OBSERVER_H_ |
| 37 |
OLD | NEW |