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

Unified Diff: content/browser/storage_partition_impl.h

Issue 2906543002: Add support for reading blobs when using the network service. (Closed)
Patch Set: fix threading issue with weakptr Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/loader/test_url_loader_client.h ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/storage_partition_impl.h
diff --git a/content/browser/storage_partition_impl.h b/content/browser/storage_partition_impl.h
index 58a6de1bd4f76c0e90ba3e023c5d89b551c20b3e..cf6d28c38b5b3d0c638065475d5e9a8bc9bb147e 100644
--- a/content/browser/storage_partition_impl.h
+++ b/content/browser/storage_partition_impl.h
@@ -18,6 +18,7 @@
#include "content/browser/appcache/chrome_appcache_service.h"
#include "content/browser/background_fetch/background_fetch_context.h"
#include "content/browser/background_sync/background_sync_context.h"
+#include "content/browser/blob_storage/blob_url_loader_factory.h"
#include "content/browser/bluetooth/bluetooth_allowed_devices_map.h"
#include "content/browser/broadcast_channel/broadcast_channel_provider.h"
#include "content/browser/cache_storage/cache_storage_context_impl.h"
@@ -41,6 +42,7 @@
#endif
namespace content {
+class BlobURLLoaderFactory;
class CONTENT_EXPORT StoragePartitionImpl
: public StoragePartition,
@@ -116,6 +118,7 @@ class CONTENT_EXPORT StoragePartitionImpl
PaymentAppContextImpl* GetPaymentAppContext();
BroadcastChannelProvider* GetBroadcastChannelProvider();
BluetoothAllowedDevicesMap* GetBluetoothAllowedDevicesMap();
+ BlobURLLoaderFactory* GetBlobURLLoaderFactory();
// mojom::StoragePartitionService interface.
void OpenLocalStorage(
@@ -247,6 +250,7 @@ class CONTENT_EXPORT StoragePartitionImpl
scoped_refptr<PaymentAppContextImpl> payment_app_context_;
scoped_refptr<BroadcastChannelProvider> broadcast_channel_provider_;
scoped_refptr<BluetoothAllowedDevicesMap> bluetooth_allowed_devices_map_;
+ scoped_refptr<BlobURLLoaderFactory> blob_url_loader_factory_;
mojo::BindingSet<mojom::StoragePartitionService> bindings_;
mojom::NetworkContextPtr network_context_;
« no previous file with comments | « content/browser/loader/test_url_loader_client.h ('k') | content/browser/storage_partition_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698