summaryrefslogtreecommitdiffstats
path: root/chromium/content/browser/service_worker/service_worker_disk_cache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/service_worker/service_worker_disk_cache.cc')
-rw-r--r--chromium/content/browser/service_worker/service_worker_disk_cache.cc22
1 files changed, 22 insertions, 0 deletions
diff --git a/chromium/content/browser/service_worker/service_worker_disk_cache.cc b/chromium/content/browser/service_worker/service_worker_disk_cache.cc
new file mode 100644
index 00000000000..a8ca52acae7
--- /dev/null
+++ b/chromium/content/browser/service_worker/service_worker_disk_cache.cc
@@ -0,0 +1,22 @@
+// 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.
+
+#include "content/browser/service_worker/service_worker_disk_cache.h"
+
+namespace content {
+
+ServiceWorkerResponseReader::ServiceWorkerResponseReader(
+ int64 response_id, ServiceWorkerDiskCache* disk_cache)
+ : appcache::AppCacheResponseReader(response_id, 0, disk_cache) {
+}
+
+ServiceWorkerResponseWriter::ServiceWorkerResponseWriter(
+ int64 response_id, ServiceWorkerDiskCache* disk_cache)
+ : appcache::AppCacheResponseWriter(response_id, 0, disk_cache) {
+}
+
+HttpResponseInfoIOBuffer::~HttpResponseInfoIOBuffer() {
+}
+
+} // namespace content