// 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 #include #include #include #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(); std::map> infos_by_origin; private: friend class base::RefCountedThreadSafe; virtual ~AppCacheInfoCollection(); }; // Exposes a limited interface to the AppCacheService. // Call these methods only on the UI 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_