| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "content/browser/broadcast_channel/broadcast_channel_provider.h" | 23 #include "content/browser/broadcast_channel/broadcast_channel_provider.h" |
| 24 #include "content/browser/cache_storage/cache_storage_context_impl.h" | 24 #include "content/browser/cache_storage/cache_storage_context_impl.h" |
| 25 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" | 25 #include "content/browser/dom_storage/dom_storage_context_wrapper.h" |
| 26 #include "content/browser/indexed_db/indexed_db_context_impl.h" | 26 #include "content/browser/indexed_db/indexed_db_context_impl.h" |
| 27 #include "content/browser/notifications/platform_notification_context_impl.h" | 27 #include "content/browser/notifications/platform_notification_context_impl.h" |
| 28 #include "content/browser/payments/payment_app_context_impl.h" | 28 #include "content/browser/payments/payment_app_context_impl.h" |
| 29 #include "content/browser/push_messaging/push_messaging_context.h" | 29 #include "content/browser/push_messaging/push_messaging_context.h" |
| 30 #include "content/browser/service_worker/service_worker_context_wrapper.h" | 30 #include "content/browser/service_worker/service_worker_context_wrapper.h" |
| 31 #include "content/browser/url_loader_factory_getter.h" | 31 #include "content/browser/url_loader_factory_getter.h" |
| 32 #include "content/common/content_export.h" | 32 #include "content/common/content_export.h" |
| 33 #include "content/common/network_service.mojom.h" | |
| 34 #include "content/common/storage_partition_service.mojom.h" | 33 #include "content/common/storage_partition_service.mojom.h" |
| 35 #include "content/public/browser/storage_partition.h" | 34 #include "content/public/browser/storage_partition.h" |
| 35 #include "content/public/common/network_service.mojom.h" |
| 36 #include "mojo/public/cpp/bindings/binding_set.h" | 36 #include "mojo/public/cpp/bindings/binding_set.h" |
| 37 #include "net/cookies/cookie_store.h" | 37 #include "net/cookies/cookie_store.h" |
| 38 #include "storage/browser/quota/special_storage_policy.h" | 38 #include "storage/browser/quota/special_storage_policy.h" |
| 39 | 39 |
| 40 #if !defined(OS_ANDROID) | 40 #if !defined(OS_ANDROID) |
| 41 #include "content/browser/host_zoom_level_context.h" | 41 #include "content/browser/host_zoom_level_context.h" |
| 42 #endif | 42 #endif |
| 43 | 43 |
| 44 namespace content { | 44 namespace content { |
| 45 class BlobURLLoaderFactory; | 45 class BlobURLLoaderFactory; |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 BrowserContext* browser_context_; | 261 BrowserContext* browser_context_; |
| 262 | 262 |
| 263 base::WeakPtrFactory<StoragePartitionImpl> weak_factory_; | 263 base::WeakPtrFactory<StoragePartitionImpl> weak_factory_; |
| 264 | 264 |
| 265 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); | 265 DISALLOW_COPY_AND_ASSIGN(StoragePartitionImpl); |
| 266 }; | 266 }; |
| 267 | 267 |
| 268 } // namespace content | 268 } // namespace content |
| 269 | 269 |
| 270 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ | 270 #endif // CONTENT_BROWSER_STORAGE_PARTITION_IMPL_H_ |
| OLD | NEW |