diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/content/browser/quota | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/content/browser/quota')
-rw-r--r-- | chromium/content/browser/quota/quota_context.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chromium/content/browser/quota/quota_context.cc b/chromium/content/browser/quota/quota_context.cc index 95b82b44969..cbac0ada33c 100644 --- a/chromium/content/browser/quota/quota_context.cc +++ b/chromium/content/browser/quota/quota_context.cc @@ -10,7 +10,6 @@ #include "base/memory/ref_counted_delete_on_sequence.h" #include "base/memory/scoped_refptr.h" #include "base/single_thread_task_runner.h" -#include "base/task/post_task.h" #include "content/browser/quota/quota_manager_host.h" #include "content/public/browser/browser_task_traits.h" #include "content/public/browser/browser_thread.h" @@ -29,9 +28,8 @@ QuotaContext::QuotaContext( const base::FilePath& profile_path, scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy, storage::GetQuotaSettingsFunc get_settings_function) - : base::RefCountedDeleteOnSequence<QuotaContext>( - base::CreateSingleThreadTaskRunner({BrowserThread::IO})), - io_thread_(base::CreateSingleThreadTaskRunner({BrowserThread::IO})), + : base::RefCountedDeleteOnSequence<QuotaContext>(GetIOThreadTaskRunner({})), + io_thread_(GetIOThreadTaskRunner({})), quota_manager_(base::MakeRefCounted<storage::QuotaManager>( is_incognito, profile_path, |