| Index: content/browser/quota/mock_quota_manager.cc
|
| diff --git a/content/browser/quota/mock_quota_manager.cc b/content/browser/quota/mock_quota_manager.cc
|
| index 39cd1f287b5e8b6c94a7e9bed443fa525f740e04..4884d0d7dfe16414386828ebf034a56ce4527701 100644
|
| --- a/content/browser/quota/mock_quota_manager.cc
|
| +++ b/content/browser/quota/mock_quota_manager.cc
|
| @@ -33,11 +33,14 @@ MockQuotaManager::StorageInfo::~StorageInfo() {}
|
| MockQuotaManager::MockQuotaManager(
|
| bool is_incognito,
|
| const base::FilePath& profile_path,
|
| - base::SingleThreadTaskRunner* io_thread,
|
| - base::SequencedTaskRunner* db_thread,
|
| - SpecialStoragePolicy* special_storage_policy)
|
| - : QuotaManager(is_incognito, profile_path, io_thread, db_thread,
|
| - special_storage_policy),
|
| + const scoped_refptr<base::SingleThreadTaskRunner>& io_thread,
|
| + const scoped_refptr<base::SequencedTaskRunner>& db_thread,
|
| + const scoped_refptr<SpecialStoragePolicy>& special_storage_policy)
|
| + : QuotaManager(is_incognito,
|
| + profile_path,
|
| + io_thread,
|
| + db_thread,
|
| + special_storage_policy),
|
| weak_factory_(this) {
|
| }
|
|
|
|
|