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

Side by Side Diff: content/browser/storage_partition_impl.h

Issue 23615009: Stub out initial NavigationController browser implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to ToT Created 7 years, 3 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 | Annotate | Revision Log
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_BROWSER_STORAGE_PARTITION_IMPL_H_ 5 #ifndef CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_
6 #define CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ 6 #define CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "content/browser/appcache/chrome_appcache_service.h" 11 #include "content/browser/appcache/chrome_appcache_service.h"
12 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" 12 #include "content/browser/dom_storage/dom_storage_context_wrapper.h"
13 #include "content/browser/indexed_db/indexed_db_context_impl.h" 13 #include "content/browser/indexed_db/indexed_db_context_impl.h"
14 #include "content/browser/media/webrtc_identity_store.h" 14 #include "content/browser/media/webrtc_identity_store.h"
15 #include "content/browser/service_worker/service_worker_context.h"
15 #include "content/common/content_export.h" 16 #include "content/common/content_export.h"
16 #include "content/public/browser/storage_partition.h" 17 #include "content/public/browser/storage_partition.h"
17 18
18 namespace content { 19 namespace content {
19 20
20 class StoragePartitionImpl : public StoragePartition { 21 class StoragePartitionImpl : public StoragePartition {
21 public: 22 public:
22 CONTENT_EXPORT virtual ~StoragePartitionImpl(); 23 CONTENT_EXPORT virtual ~StoragePartitionImpl();
23 24
24 // StoragePartition interface. 25 // StoragePartition interface.
(...skipping 14 matching lines...) Expand all
39 net::URLRequestContextGetter* request_context_getter) OVERRIDE; 40 net::URLRequestContextGetter* request_context_getter) OVERRIDE;
40 virtual void ClearDataForUnboundedRange( 41 virtual void ClearDataForUnboundedRange(
41 uint32 remove_mask, 42 uint32 remove_mask,
42 uint32 quota_storage_remove_mask) OVERRIDE; 43 uint32 quota_storage_remove_mask) OVERRIDE;
43 virtual void ClearDataForRange(uint32 remove_mask, 44 virtual void ClearDataForRange(uint32 remove_mask,
44 uint32 quota_storage_remove_mask, 45 uint32 quota_storage_remove_mask,
45 const base::Time& begin, 46 const base::Time& begin,
46 const base::Time& end, 47 const base::Time& end,
47 const base::Closure& callback) OVERRIDE; 48 const base::Closure& callback) OVERRIDE;
48 49
50 ServiceWorkerContext* GetServiceWorkerContext();
51
49 WebRTCIdentityStore* GetWebRTCIdentityStore(); 52 WebRTCIdentityStore* GetWebRTCIdentityStore();
50 53
51 struct DataDeletionHelper; 54 struct DataDeletionHelper;
52 struct QuotaManagedDataDeletionHelper; 55 struct QuotaManagedDataDeletionHelper;
53 56
54 private: 57 private:
55 friend class StoragePartitionImplMap; 58 friend class StoragePartitionImplMap;
56 FRIEND_TEST_ALL_PREFIXES(StoragePartitionShaderClearTest, ClearShaderCache); 59 FRIEND_TEST_ALL_PREFIXES(StoragePartitionShaderClearTest, ClearShaderCache);
57 60
58 // The |partition_path| is the absolute path to the root of this 61 // The |partition_path| is the absolute path to the root of this
(...skipping 11 matching lines...) Expand all
70 static int GenerateQuotaClientMask(uint32 remove_mask); 73 static int GenerateQuotaClientMask(uint32 remove_mask);
71 74
72 CONTENT_EXPORT StoragePartitionImpl( 75 CONTENT_EXPORT StoragePartitionImpl(
73 const base::FilePath& partition_path, 76 const base::FilePath& partition_path,
74 quota::QuotaManager* quota_manager, 77 quota::QuotaManager* quota_manager,
75 ChromeAppCacheService* appcache_service, 78 ChromeAppCacheService* appcache_service,
76 fileapi::FileSystemContext* filesystem_context, 79 fileapi::FileSystemContext* filesystem_context,
77 webkit_database::DatabaseTracker* database_tracker, 80 webkit_database::DatabaseTracker* database_tracker,
78 DOMStorageContextWrapper* dom_storage_context, 81 DOMStorageContextWrapper* dom_storage_context,
79 IndexedDBContextImpl* indexed_db_context, 82 IndexedDBContextImpl* indexed_db_context,
83 ServiceWorkerContext* service_worker_context,
80 WebRTCIdentityStore* webrtc_identity_store); 84 WebRTCIdentityStore* webrtc_identity_store);
81 85
82 void ClearDataImpl(uint32 remove_mask, 86 void ClearDataImpl(uint32 remove_mask,
83 uint32 quota_storage_remove_mask, 87 uint32 quota_storage_remove_mask,
84 const GURL& remove_origin, 88 const GURL& remove_origin,
85 net::URLRequestContextGetter* rq_context, 89 net::URLRequestContextGetter* rq_context,
86 const base::Time begin, 90 const base::Time begin,
87 const base::Time end, 91 const base::Time end,
88 const base::Closure& callback); 92 const base::Closure& callback);
89 93
(...skipping 15 matching lines...) Expand all
105 109
106 base::FilePath partition_path_; 110 base::FilePath partition_path_;
107 scoped_refptr<net::URLRequestContextGetter> url_request_context_; 111 scoped_refptr<net::URLRequestContextGetter> url_request_context_;
108 scoped_refptr<net::URLRequestContextGetter> media_url_request_context_; 112 scoped_refptr<net::URLRequestContextGetter> media_url_request_context_;
109 scoped_refptr<quota::QuotaManager> quota_manager_; 113 scoped_refptr<quota::QuotaManager> quota_manager_;
110 scoped_refptr<ChromeAppCacheService> appcache_service_; 114 scoped_refptr<ChromeAppCacheService> appcache_service_;
111 scoped_refptr<fileapi::FileSystemContext> filesystem_context_; 115 scoped_refptr<fileapi::FileSystemContext> filesystem_context_;
112 scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; 116 scoped_refptr<webkit_database::DatabaseTracker> database_tracker_;
113 scoped_refptr<DOMStorageContextWrapper> dom_storage_context_; 117 scoped_refptr<DOMStorageContextWrapper> dom_storage_context_;
114 scoped_refptr<IndexedDBContextImpl> indexed_db_context_; 118 scoped_refptr<IndexedDBContextImpl> indexed_db_context_;
119 scoped_refptr<ServiceWorkerContext> service_worker_context_;
115 scoped_refptr<WebRTCIdentityStore> webrtc_identity_store_; 120 scoped_refptr<WebRTCIdentityStore> webrtc_identity_store_;
116 121
117 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); 122 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl);
118 }; 123 };
119 124
120 } // namespace content 125 } // namespace content
121 126
122 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ 127 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/service_worker/service_worker_dispatcher_host.cc ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698