blob: bd964e6c27956777ae5b2986721b0735ebced85c (
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
|
// Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_APPCACHE_SERVICE_H_
#define CONTENT_PUBLIC_BROWSER_APPCACHE_SERVICE_H_
#include <map>
#include <memory>
#include <set>
#include <vector>
#include "base/memory/ref_counted.h"
#include "content/common/content_export.h"
#include "net/base/completion_once_callback.h"
#include "url/origin.h"
namespace blink {
namespace mojom {
class AppCacheInfo;
} // namespace mojom
} // namespace blink
namespace content {
// Refcounted container to avoid copying the collection in callbacks.
struct CONTENT_EXPORT AppCacheInfoCollection
: public base::RefCountedThreadSafe<AppCacheInfoCollection> {
AppCacheInfoCollection();
std::map<url::Origin, std::vector<blink::mojom::AppCacheInfo>>
infos_by_origin;
private:
friend class base::RefCountedThreadSafe<AppCacheInfoCollection>;
virtual ~AppCacheInfoCollection();
};
// Exposes a limited interface to the AppCacheService.
// Call these methods only on the IO thread.
class CONTENT_EXPORT AppCacheService {
public:
// Populates 'collection' with info about all of the appcaches stored
// within the service, 'callback' is invoked upon completion. The service
// acquires a reference to the 'collection' until completion.
// This method always completes asynchronously.
virtual void GetAllAppCacheInfo(AppCacheInfoCollection* collection,
net::CompletionOnceCallback callback) = 0;
// Deletes all appcache groups associated with an origin.
// This method always completes asynchronously.
virtual void DeleteAppCachesForOrigin(
const url::Origin& origin,
net::CompletionOnceCallback callback) = 0;
protected:
virtual ~AppCacheService();
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_APPCACHE_SERVICE_H_
|