chromium/content/browser/worker_host/worker_script_fetcher_unittest.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/worker_host/worker_script_fetcher.h"

#include <vector>

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/mojom/worker/worker_main_script_load_params.mojom.h"
#include "url/gurl.h"

namespace content {

namespace {

blink::mojom::WorkerMainScriptLoadParamsPtr CreateParams(
    const std::vector<GURL>& url_list_via_service_worker,
    const std::vector<GURL>& redirect_infos) {}

}  // namespace

TEST(WorkerScriptFetcherTest, DetermineFinalResponseUrl) {}

}  // namespace content