chromium/content/web_test/browser/web_test_background_fetch_delegate.h

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

#ifndef CONTENT_WEB_TEST_BROWSER_WEB_TEST_BACKGROUND_FETCH_DELEGATE_H_
#define CONTENT_WEB_TEST_BROWSER_WEB_TEST_BACKGROUND_FETCH_DELEGATE_H_

#include <memory>
#include <optional>

#include "base/memory/raw_ptr.h"
#include "components/download/public/background_service/client.h"
#include "content/public/browser/background_fetch_delegate.h"

class SimpleFactoryKey;

namespace download {
class BackgroundDownloadService;
}  // namespace download

namespace content {

class BrowserContext;

class WebTestBackgroundFetchDelegate : public BackgroundFetchDelegate {};

}  // namespace content

#endif  // CONTENT_WEB_TEST_BROWSER_WEB_TEST_BACKGROUND_FETCH_DELEGATE_H_