OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 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 #include "chrome/browser/chromeos/cros/update_library.h" |
| 6 |
| 7 #include "base/message_loop.h" |
| 8 #include "base/string_util.h" |
| 9 #include "chrome/browser/chrome_thread.h" |
| 10 #include "chrome/browser/chromeos/cros/cros_library.h" |
| 11 |
| 12 // Allows InvokeLater without adding refcounting. This class is a Singleton and |
| 13 // won't be deleted until it's last InvokeLater is run. |
| 14 DISABLE_RUNNABLE_METHOD_REFCOUNT(chromeos::UpdateLibraryImpl); |
| 15 |
| 16 namespace chromeos { |
| 17 |
| 18 UpdateLibraryImpl::UpdateLibraryImpl() |
| 19 : status_connection_(NULL) { |
| 20 if (CrosLibrary::Get()->EnsureLoaded()) { |
| 21 Init(); |
| 22 } |
| 23 } |
| 24 |
| 25 UpdateLibraryImpl::~UpdateLibraryImpl() { |
| 26 if (status_connection_) { |
| 27 DisconnectUpdateProgress(status_connection_); |
| 28 } |
| 29 } |
| 30 |
| 31 void UpdateLibraryImpl::AddObserver(Observer* observer) { |
| 32 observers_.AddObserver(observer); |
| 33 } |
| 34 |
| 35 void UpdateLibraryImpl::RemoveObserver(Observer* observer) { |
| 36 observers_.RemoveObserver(observer); |
| 37 } |
| 38 |
| 39 const UpdateLibrary::Status& UpdateLibraryImpl::status() const { |
| 40 return status_; |
| 41 } |
| 42 |
| 43 // static |
| 44 void UpdateLibraryImpl::ChangedHandler(void* object, |
| 45 const UpdateProgress& status) { |
| 46 UpdateLibraryImpl* power = static_cast<UpdateLibraryImpl*>(object); |
| 47 power->UpdateStatus(Status(status)); |
| 48 } |
| 49 |
| 50 void UpdateLibraryImpl::Init() { |
| 51 status_connection_ = MonitorUpdateStatus(&ChangedHandler, this); |
| 52 } |
| 53 |
| 54 void UpdateLibraryImpl::UpdateStatus(const Status& status) { |
| 55 // Make sure we run on UI thread. |
| 56 if (!ChromeThread::CurrentlyOn(ChromeThread::UI)) { |
| 57 ChromeThread::PostTask( |
| 58 ChromeThread::UI, FROM_HERE, |
| 59 NewRunnableMethod(this, &UpdateLibraryImpl::UpdateStatus, status)); |
| 60 return; |
| 61 } |
| 62 |
| 63 status_ = status; |
| 64 FOR_EACH_OBSERVER(Observer, observers_, Changed(this)); |
| 65 } |
| 66 |
| 67 } // namespace chromeos |
| 68 |
OLD | NEW |