Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2020)

Unified Diff: content/public/browser/cache_storage_context.h

Issue 992353003: Decouple Cache Storage messaging from Service Worker/Embedded Worker (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused public stubs Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/cache_storage_context.h
diff --git a/content/public/browser/cache_storage_context.h b/content/public/browser/cache_storage_context.h
new file mode 100644
index 0000000000000000000000000000000000000000..258cc362e968124211616ed92e3909dab9bd0037
--- /dev/null
+++ b/content/public/browser/cache_storage_context.h
@@ -0,0 +1,24 @@
+// Copyright 2015 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_CACHE_STORAGE_CONTEXT_H_
+#define CONTENT_PUBLIC_BROWSER_CACHE_STORAGE_CONTEXT_H_
+
+#include "url/gurl.h"
+
+namespace content {
+
+// Represents the per-StoragePartition CacheStorage data.
+class CacheStorageContext {
+ public:
+ // TODO(jsbell): API for enumerating/clearing origin data. crbug.com/466371
michaeln 2015/03/12 02:03:43 we might want to leave this out of /public/browser
kinuko 2015/03/12 10:57:25 +1
jsbell 2015/03/12 15:56:47 Done.
+
+ protected:
+ CacheStorageContext() {}
+ virtual ~CacheStorageContext() {}
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_CACHE_STORAGE_CONTEXT_H_

Powered by Google App Engine
This is Rietveld 408576698