| 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/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/cache_storage/cache_storage_context_impl.h" |
| 12 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" | 13 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" |
| 13 #include "content/browser/host_zoom_level_context.h" | 14 #include "content/browser/host_zoom_level_context.h" |
| 14 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 15 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
| 15 #include "content/browser/media/webrtc_identity_store.h" | 16 #include "content/browser/media/webrtc_identity_store.h" |
| 16 #include "content/browser/navigator_connect/navigator_connect_context_impl.h" | 17 #include "content/browser/navigator_connect/navigator_connect_context_impl.h" |
| 17 #include "content/browser/notifications/platform_notification_context_impl.h" | 18 #include "content/browser/notifications/platform_notification_context_impl.h" |
| 18 #include "content/browser/service_worker/cache_storage_context_impl.h" | |
| 19 #include "content/browser/service_worker/service_worker_context_wrapper.h" | 19 #include "content/browser/service_worker/service_worker_context_wrapper.h" |
| 20 #include "content/common/content_export.h" | 20 #include "content/common/content_export.h" |
| 21 #include "content/public/browser/storage_partition.h" | 21 #include "content/public/browser/storage_partition.h" |
| 22 #include "storage/browser/quota/special_storage_policy.h" | 22 #include "storage/browser/quota/special_storage_policy.h" |
| 23 | 23 |
| 24 namespace content { | 24 namespace content { |
| 25 | 25 |
| 26 class StoragePartitionImpl : public StoragePartition { | 26 class StoragePartitionImpl : public StoragePartition { |
| 27 public: | 27 public: |
| 28 CONTENT_EXPORT ~StoragePartitionImpl() override; | 28 CONTENT_EXPORT ~StoragePartitionImpl() override; |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the | 187 // StoragePartitionImplMap which then owns StoragePartitionImpl. When the |
| 188 // BrowserContext is destroyed, |this| will be destroyed too. | 188 // BrowserContext is destroyed, |this| will be destroyed too. |
| 189 BrowserContext* browser_context_; | 189 BrowserContext* browser_context_; |
| 190 | 190 |
| 191 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); | 191 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); |
| 192 }; | 192 }; |
| 193 | 193 |
| 194 } // namespace content | 194 } // namespace content |
| 195 | 195 |
| 196 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ | 196 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ |
| OLD | NEW |