#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include <memory>
#include <vector>
#include "base/files/scoped_temp_dir.h"
#include "base/run_loop.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/bind.h"
#include "base/test/scoped_feature_list.h"
#include "components/services/storage/service_worker/service_worker_storage_control_impl.h"
#include "content/browser/service_worker/service_worker_context_core.h"
#include "content/browser/service_worker/service_worker_registration.h"
#include "content/browser/service_worker/service_worker_test_utils.h"
#include "content/browser/service_worker/service_worker_version.h"
#include "content/browser/storage_partition_impl.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "net/base/features.h"
#include "net/base/schemeful_site.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_registration.mojom.h"
#include "url/origin.h"
namespace content {
class ServiceWorkerContextWrapperTest : public testing::Test { … };
TEST_F(ServiceWorkerContextWrapperTest, HasRegistration) { … }
TEST_F(ServiceWorkerContextWrapperTest, DeleteRegistrationsForSameKey) { … }
TEST_F(ServiceWorkerContextWrapperTest, DeleteRegistrationsForPartitionedKeys) { … }
TEST_F(ServiceWorkerContextWrapperTest, DeleteRegistration) { … }
}