Chromium Code Reviews| 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_ |