| Index: content/browser/storage_partition_impl.cc
|
| diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc
|
| index 5088f2bb4d392a859dcc0383ecba14730505ec63..bed70ef390587fa8388d27f7382cb1f4c4aa7e51 100644
|
| --- a/content/browser/storage_partition_impl.cc
|
| +++ b/content/browser/storage_partition_impl.cc
|
| @@ -22,10 +22,12 @@
|
| #include "content/common/dom_storage/dom_storage_types.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/browser_thread.h"
|
| +#include "content/public/browser/content_browser_client.h"
|
| #include "content/public/browser/dom_storage_context.h"
|
| #include "content/public/browser/indexed_db_context.h"
|
| #include "content/public/browser/local_storage_usage_info.h"
|
| #include "content/public/browser/session_storage_usage_info.h"
|
| +#include "content/public/common/content_client.h"
|
| #include "net/base/completion_callback.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/cookies/canonical_cookie.h"
|
| @@ -443,7 +445,9 @@ StoragePartitionImpl* StoragePartitionImpl::Create(
|
| in_memory, partition_path,
|
| BrowserThread::GetTaskRunnerForThread(BrowserThread::IO).get(),
|
| BrowserThread::GetTaskRunnerForThread(BrowserThread::DB).get(),
|
| - context->GetSpecialStoragePolicy());
|
| + context->GetSpecialStoragePolicy(),
|
| + GetContentClient()->browser()->
|
| + GetTemporaryStorageConfigurationFunction(context));
|
|
|
| // Each consumer is responsible for registering its QuotaClient during
|
| // its construction.
|
|
|