blob: 83850129aad0fcd7491d0b8296cade930bca288a [file] [log] [blame]
// Copyright 2014 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_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISK_CACHE_H_
#define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISK_CACHE_H_
#include "content/common/content_export.h"
#include "webkit/browser/appcache/appcache_disk_cache.h"
namespace content {
// Wholesale reusage of the appcache code for response reading,
// writing, and storage. See the corresponding class in that
// library for doc comments and other details.
// TODO(michaeln): If this reuse sticks, refactor/move the
// resused classes to a more common location.
class CONTENT_EXPORT ServiceWorkerDiskCache
: public appcache::AppCacheDiskCache {
};
class CONTENT_EXPORT ServiceWorkerResponseReader
: public appcache::AppCacheResponseReader {
protected:
// Should only be constructed by the storage class.
friend class ServiceWorkerStorage;
ServiceWorkerResponseReader(
int64 response_id,
ServiceWorkerDiskCache* disk_cache);
};
class CONTENT_EXPORT ServiceWorkerResponseWriter
: public appcache::AppCacheResponseWriter {
protected:
// Should only be constructed by the storage class.
friend class ServiceWorkerStorage;
ServiceWorkerResponseWriter(
int64 response_id,
ServiceWorkerDiskCache* disk_cache);
};
struct CONTENT_EXPORT HttpResponseInfoIOBuffer
: public appcache::HttpResponseInfoIOBuffer {
public:
HttpResponseInfoIOBuffer() : appcache::HttpResponseInfoIOBuffer() {}
explicit HttpResponseInfoIOBuffer(net::HttpResponseInfo* info)
: appcache::HttpResponseInfoIOBuffer(info) {}
protected:
virtual ~HttpResponseInfoIOBuffer();
};
} // namespace content
#endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISK_CACHE_H_