OLD | NEW |
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/file_path.h" | 9 #include "base/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_impl.h" | 12 #include "content/browser/dom_storage/dom_storage_context_impl.h" |
13 #include "content/browser/in_process_webkit/indexed_db_context_impl.h" | 13 #include "content/browser/in_process_webkit/indexed_db_context_impl.h" |
14 #include "content/public/browser/storage_partition.h" | 14 #include "content/public/browser/storage_partition.h" |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 | 17 |
18 class StoragePartitionImpl : public StoragePartition { | 18 class StoragePartitionImpl : public StoragePartition { |
19 public: | 19 public: |
20 virtual ~StoragePartitionImpl(); | 20 virtual ~StoragePartitionImpl(); |
21 | 21 |
22 // TODO(ajwong): Break the direct dependency on |context|. We only | 22 // TODO(ajwong): Break the direct dependency on |context|. We only |
23 // need 3 pieces of info from it. | 23 // need 3 pieces of info from it. |
24 static StoragePartitionImpl* Create(BrowserContext* context, | 24 static StoragePartitionImpl* Create(BrowserContext* context, |
| 25 const std::string& partition_id, |
25 const FilePath& partition_path); | 26 const FilePath& partition_path); |
26 | 27 |
27 // StoragePartition interface. | 28 // StoragePartition interface. |
| 29 virtual FilePath GetPath() OVERRIDE; |
28 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE; | 30 virtual quota::QuotaManager* GetQuotaManager() OVERRIDE; |
29 virtual ChromeAppCacheService* GetAppCacheService() OVERRIDE; | 31 virtual ChromeAppCacheService* GetAppCacheService() OVERRIDE; |
30 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE; | 32 virtual fileapi::FileSystemContext* GetFileSystemContext() OVERRIDE; |
31 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE; | 33 virtual webkit_database::DatabaseTracker* GetDatabaseTracker() OVERRIDE; |
32 virtual DOMStorageContextImpl* GetDOMStorageContext() OVERRIDE; | 34 virtual DOMStorageContextImpl* GetDOMStorageContext() OVERRIDE; |
33 virtual IndexedDBContextImpl* GetIndexedDBContext() OVERRIDE; | 35 virtual IndexedDBContextImpl* GetIndexedDBContext() OVERRIDE; |
34 | 36 |
35 private: | 37 private: |
36 StoragePartitionImpl(const FilePath& partition_path, | 38 StoragePartitionImpl(const FilePath& partition_path, |
37 quota::QuotaManager* quota_manager, | 39 quota::QuotaManager* quota_manager, |
(...skipping 10 matching lines...) Expand all Loading... |
48 scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; | 50 scoped_refptr<webkit_database::DatabaseTracker> database_tracker_; |
49 scoped_refptr<DOMStorageContextImpl> dom_storage_context_; | 51 scoped_refptr<DOMStorageContextImpl> dom_storage_context_; |
50 scoped_refptr<IndexedDBContextImpl> indexed_db_context_; | 52 scoped_refptr<IndexedDBContextImpl> indexed_db_context_; |
51 | 53 |
52 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); | 54 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); |
53 }; | 55 }; |
54 | 56 |
55 } // namespace content | 57 } // namespace content |
56 | 58 |
57 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ | 59 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ |
OLD | NEW |