Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_CACHE_STORAGE_CONTEXT_H_ | |
| 6 #define CONTENT_PUBLIC_BROWSER_CACHE_STORAGE_CONTEXT_H_ | |
| 7 | |
| 8 #include "url/gurl.h" | |
| 9 | |
| 10 namespace content { | |
| 11 | |
| 12 // Represents the per-StoragePartition CacheStorage data. | |
| 13 class CacheStorageContext { | |
| 14 public: | |
| 15 // 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.
| |
| 16 | |
| 17 protected: | |
| 18 CacheStorageContext() {} | |
| 19 virtual ~CacheStorageContext() {} | |
| 20 }; | |
| 21 | |
| 22 } // namespace content | |
| 23 | |
| 24 #endif // CONTENT_PUBLIC_BROWSER_CACHE_STORAGE_CONTEXT_H_ | |
| OLD | NEW |