// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "storage/browser/quota/quota_manager.h" #include "base/task/single_thread_task_runner.h" #include <utility> namespace storage { QuotaManager::QuotaManager( bool is_incognito, const base::FilePath& profile_path, scoped_refptr<base::SingleThreadTaskRunner> io_thread, base::RepeatingClosure quota_change_callback, scoped_refptr<SpecialStoragePolicy> special_storage_policy, const GetQuotaSettingsFunc& get_settings_function) : … { … } QuotaManager::~QuotaManager() = default; } // namespace storage