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_OFFLINE_OFFLINE_LOAD_SERVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_SERVICE_H_ |
| 7 |
| 8 #include <tr1/unordered_set> |
| 9 |
| 10 #include "base/ref_counted.h" |
| 11 #include "chrome/common/notification_observer.h" |
| 12 #include "chrome/common/notification_type.h" |
| 13 #include "chrome/common/notification_registrar.h" |
| 14 |
| 15 class GURL; |
| 16 class NavigationController; |
| 17 class TabContents; |
| 18 template<class A> class scoped_ptr; |
| 19 |
| 20 namespace chromeos { |
| 21 |
| 22 // OfflineLoadService decides whether or not the given url in the tab |
| 23 // should be loaded when the network is not available. The current |
| 24 // implementation simply memorize the tab that loads offline page. |
| 25 // TODO(oshima): Improve the logic so that we can automatically load |
| 26 // if there is valid cache content and/or it supports offline mode. |
| 27 class OfflineLoadService |
| 28 : public NotificationObserver, |
| 29 public base::RefCountedThreadSafe<OfflineLoadService> { |
| 30 public: |
| 31 // Returns the singleton instance of the offline load service. |
| 32 static OfflineLoadService* Get(); |
| 33 |
| 34 // Returns true if the tab should proceed with loading the page even if |
| 35 // it's offline. |
| 36 bool ShouldProceed(int process_id, int render_view_id, |
| 37 const GURL& url) const; |
| 38 |
| 39 // Record that the user pressed "procced" button for |
| 40 // the tab_contents. |
| 41 void Proceeded(int proceed_id, int render_view_id, const GURL& url); |
| 42 |
| 43 // NotificationObserver implementation. |
| 44 virtual void Observe(NotificationType type, |
| 45 const NotificationSource& source, |
| 46 const NotificationDetails& details); |
| 47 |
| 48 private: |
| 49 friend class base::RefCountedThreadSafe<OfflineLoadService>; |
| 50 friend class scoped_ptr<OfflineLoadService>; |
| 51 friend class OfflineLoadServiceSingleton; |
| 52 |
| 53 OfflineLoadService() {} |
| 54 virtual ~OfflineLoadService() {} |
| 55 |
| 56 // A method invoked in UI thread to remove |tab_contents| from |tabs_|. |
| 57 void RemoveTabContents(TabContents* tab_contents); |
| 58 |
| 59 // A method invoked in UI thread to register TAB_CLOSED |
| 60 // notification. |
| 61 void RegisterNotification( |
| 62 NavigationController* navigation_controller); |
| 63 |
| 64 NotificationRegistrar registrar_; |
| 65 |
| 66 // Set of tabs that should proceed |
| 67 std::tr1::unordered_set<const TabContents*> tabs_; |
| 68 |
| 69 DISALLOW_COPY_AND_ASSIGN(OfflineLoadService); |
| 70 }; |
| 71 |
| 72 } // namespace chromeos |
| 73 |
| 74 #endif // CHROME_BROWSER_CHROMEOS_OFFLINE_OFFLINE_LOAD_SERVICE_H_ |
OLD | NEW |