#include "content/browser/service_worker/service_worker_main_resource_loader_interceptor.h"
#include "build/chromeos_buildflags.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_browser_context.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace content {
class ServiceWorkerMainResourceLoaderInterceptorTest : public testing::Test { … };
TEST_F(ServiceWorkerMainResourceLoaderInterceptorTest,
ShouldCreateForNavigation_HTTP) { … }
TEST_F(ServiceWorkerMainResourceLoaderInterceptorTest,
ShouldCreateForNavigation_HTTPS) { … }
TEST_F(ServiceWorkerMainResourceLoaderInterceptorTest,
ShouldCreateForNavigation_FTP) { … }
TEST_F(ServiceWorkerMainResourceLoaderInterceptorTest,
ShouldCreateForNavigation_ExternalFileScheme) { … }
}