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