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 #include "chrome/browser/chromeos/offline/offline_load_service.h" |
| 6 |
| 7 #include "base/singleton.h" |
| 8 #include "base/ref_counted.h" |
| 9 #include "chrome/common/notification_service.h" |
| 10 #include "chrome/browser/chrome_thread.h" |
| 11 #include "chrome/browser/tab_contents/tab_contents.h" |
| 12 #include "chrome/browser/tab_contents/tab_util.h" |
| 13 #include "chrome/browser/tab_contents/navigation_controller.h" |
| 14 |
| 15 namespace chromeos { |
| 16 |
| 17 // A utility class that serves a singleton instance of OfflineLoadService. |
| 18 // OfflineLoadSerivce itself cannot be a singleton as it implements |
| 19 // RefCount interface. |
| 20 class OfflineLoadServiceSingleton { |
| 21 public: |
| 22 chromeos::OfflineLoadService* offline_load_service() { |
| 23 return offline_load_service_.get(); |
| 24 } |
| 25 |
| 26 private: |
| 27 friend struct DefaultSingletonTraits<OfflineLoadServiceSingleton>; |
| 28 OfflineLoadServiceSingleton() |
| 29 : offline_load_service_(new chromeos::OfflineLoadService()) {} |
| 30 virtual ~OfflineLoadServiceSingleton() {} |
| 31 |
| 32 scoped_refptr<chromeos::OfflineLoadService> offline_load_service_; |
| 33 |
| 34 DISALLOW_COPY_AND_ASSIGN(OfflineLoadServiceSingleton); |
| 35 }; |
| 36 |
| 37 // static |
| 38 OfflineLoadService* OfflineLoadService::Get() { |
| 39 return Singleton<OfflineLoadServiceSingleton>::get()->offline_load_service(); |
| 40 } |
| 41 |
| 42 void OfflineLoadService::Observe(NotificationType type, |
| 43 const NotificationSource& source, |
| 44 const NotificationDetails& details) { |
| 45 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI)); |
| 46 if (type.value == NotificationType::TAB_CLOSED) { |
| 47 registrar_.Remove(this, NotificationType::TAB_CLOSED, source); |
| 48 NavigationController* tab = Source<NavigationController>(source).ptr(); |
| 49 ChromeThread::PostTask( |
| 50 ChromeThread::IO, FROM_HERE, |
| 51 NewRunnableMethod(this, |
| 52 &OfflineLoadService::RemoveTabContents, |
| 53 tab->tab_contents())); |
| 54 } |
| 55 } |
| 56 |
| 57 bool OfflineLoadService::ShouldProceed(int process_host_id, |
| 58 int render_view_id, |
| 59 const GURL& url) const { |
| 60 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO)); |
| 61 TabContents* tab_contents = tab_util::GetTabContentsByID( |
| 62 process_host_id, render_view_id); |
| 63 DCHECK(tab_contents); |
| 64 bool proceed = tabs_.find(tab_contents) != tabs_.end(); |
| 65 DLOG(INFO) << "ShouldProceed:" << proceed << ", url=" << url.spec() |
| 66 << ", tab_contents=" << tab_contents; |
| 67 return proceed; |
| 68 } |
| 69 |
| 70 void OfflineLoadService::Proceeded(int process_host_id, |
| 71 int render_view_id, |
| 72 const GURL& url) { |
| 73 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO)); |
| 74 TabContents* tab_contents = tab_util::GetTabContentsByID( |
| 75 process_host_id, render_view_id); |
| 76 DCHECK(tab_contents); |
| 77 if (tabs_.find(tab_contents) == tabs_.end()) { |
| 78 DLOG(INFO) << "Proceeded: url=" << url.spec() |
| 79 << ", tab_contents=" << tab_contents; |
| 80 tabs_.insert(tab_contents); |
| 81 ChromeThread::PostTask( |
| 82 ChromeThread::UI, FROM_HERE, |
| 83 NewRunnableMethod(this, |
| 84 &OfflineLoadService::RegisterNotification, |
| 85 &tab_contents->controller())); |
| 86 } else { |
| 87 DLOG(WARNING) << "Proceeded: ignoring duplicate"; |
| 88 } |
| 89 } |
| 90 |
| 91 void OfflineLoadService::RemoveTabContents(TabContents* tab_contents) { |
| 92 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO)); |
| 93 tabs_.erase(tabs_.find(tab_contents)); |
| 94 } |
| 95 |
| 96 void OfflineLoadService::RegisterNotification( |
| 97 NavigationController* navigation_controller) { |
| 98 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::UI)); |
| 99 registrar_.Add(this, NotificationType::TAB_CLOSED, |
| 100 Source<NavigationController>( |
| 101 navigation_controller)); |
| 102 } |
| 103 |
| 104 } // namespace chromeos |
OLD | NEW |