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

Side by Side Diff: content/public/browser/storage_partition.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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_
6 #define CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_ 6 #define CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 22 matching lines...) Expand all
33 } 33 }
34 34
35 namespace storage { 35 namespace storage {
36 class DatabaseTracker; 36 class DatabaseTracker;
37 } 37 }
38 38
39 namespace content { 39 namespace content {
40 40
41 class AppCacheService; 41 class AppCacheService;
42 class BrowserContext; 42 class BrowserContext;
43 class CacheStorageContext;
jsbell 2015/03/11 23:47:26 Oops - I can revert this change for now.
jsbell 2015/03/12 15:56:47 Done.
44 class DOMStorageContext;
45 class GeofencingManager;
43 class HostZoomLevelContext; 46 class HostZoomLevelContext;
44 class HostZoomMap; 47 class HostZoomMap;
45 class DOMStorageContext;
46 class GeofencingManager;
47 class IndexedDBContext; 48 class IndexedDBContext;
48 class NavigatorConnectContext; 49 class NavigatorConnectContext;
49 class ServiceWorkerContext; 50 class ServiceWorkerContext;
50 class ZoomLevelDelegate; 51 class ZoomLevelDelegate;
51 52
52 // Defines what persistent state a child process can access. 53 // Defines what persistent state a child process can access.
53 // 54 //
54 // The StoragePartition defines the view each child process has of the 55 // The StoragePartition defines the view each child process has of the
55 // persistent state inside the BrowserContext. This is used to implement 56 // persistent state inside the BrowserContext. This is used to implement
56 // isolated storage where a renderer with isolated storage cannot see 57 // isolated storage where a renderer with isolated storage cannot see
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 const base::Time end, 133 const base::Time end,
133 const base::Closure& callback) = 0; 134 const base::Closure& callback) = 0;
134 135
135 protected: 136 protected:
136 virtual ~StoragePartition() {} 137 virtual ~StoragePartition() {}
137 }; 138 };
138 139
139 } // namespace content 140 } // namespace content
140 141
141 #endif // CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_ 142 #endif // CONTENT_PUBLIC_BROWSER_STORAGE_PARTITION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698