Index: content/browser/browser_context.cc |
diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc |
index 170f8987ba6d3278ddccf96e74e0d9ae9e9b332a..894f133bebc509d7f653a6b02dbbdc5634aa8a87 100644 |
--- a/content/browser/browser_context.cc |
+++ b/content/browser/browser_context.cc |
@@ -6,6 +6,7 @@ |
#if !defined(OS_IOS) |
#include "content/browser/download/download_manager_impl.h" |
+#include "content/browser/fileapi/chrome_blob_storage_context.h" |
#include "content/browser/indexed_db/indexed_db_context_impl.h" |
#include "content/browser/loader/resource_dispatcher_host_impl.h" |
#include "content/browser/storage_partition_impl_map.h" |
@@ -196,6 +197,10 @@ StoragePartition* BrowserContext::GetDefaultStoragePartition( |
return GetStoragePartition(browser_context, NULL); |
} |
+BlobContext* BrowserContext::GetBlobContext(BrowserContext* context) { |
+ return ChromeBlobStorageContext::GetFor(context); |
+} |
+ |
void BrowserContext::EnsureResourceContextInitialized(BrowserContext* context) { |
// This will be enough to tickle initialization of BrowserContext if |
// necessary, which initializes ResourceContext. The reason we don't call |