blob: bd964e6c27956777ae5b2986721b0735ebced85c [file] [log] [blame]
// 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_