Chromium Code Reviews| Index: content/browser/storage_partition_impl.cc |
| diff --git a/content/browser/storage_partition_impl.cc b/content/browser/storage_partition_impl.cc |
| index 571df26827fa24a0783a7de0f69b93e71dd68520..5836ef4576bf576ac0eed07111c2bdc261dfd47b 100644 |
| --- a/content/browser/storage_partition_impl.cc |
| +++ b/content/browser/storage_partition_impl.cc |
| @@ -442,7 +442,9 @@ StoragePartitionImpl* StoragePartitionImpl::Create( |
| base::FilePath path = in_memory ? base::FilePath() : partition_path; |
| scoped_refptr<DOMStorageContextWrapper> dom_storage_context = |
| - new DOMStorageContextWrapper(path, context->GetSpecialStoragePolicy()); |
| + new DOMStorageContextWrapper(context, |
| + path, |
| + context->GetSpecialStoragePolicy()); |
|
jam
2016/03/03 16:32:11
no need to pass in context and a parameter that co
|
| // BrowserMainLoop may not be initialized in unit tests. Tests will |
| // need to inject their own task runner into the IndexedDBContext. |