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

Side by Side 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698