chromium/components/download/internal/background_service/test/background_download_test_base.cc

// 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 "components/download/internal/background_service/test/background_download_test_base.h"

#include "base/functional/callback_helpers.h"

HttpMethod;
HttpRequest;
HttpResponse;

namespace download {
namespace test {

const char* BackgroundDownloadTestBase::kDefaultResponseContent =;

BackgroundDownloadTestBase::BackgroundDownloadTestBase() = default;
BackgroundDownloadTestBase::~BackgroundDownloadTestBase() = default;

void BackgroundDownloadTestBase::SetUp() {}

std::unique_ptr<HttpResponse> BackgroundDownloadTestBase::DefaultResponse(
    const HttpRequest& request) {}

std::unique_ptr<HttpResponse> BackgroundDownloadTestBase::NotFoundResponse(
    const HttpRequest& request) {}

}  // namespace test
}  // namespace download