// 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. #ifndef COMPONENTS_BACKGROUND_FETCH_DOWNLOAD_CLIENT_H_ #define COMPONENTS_BACKGROUND_FETCH_DOWNLOAD_CLIENT_H_ #include "base/functional/callback.h" #include "base/memory/raw_ptr.h" #include "components/download/public/background_service/client.h" namespace content { class BrowserContext; } // namespace content namespace background_fetch { class BackgroundFetchDelegateBase; // A DownloadService client used by BackgroundFetch. Mostly this just forwards // calls to BackgroundFetchDelegateBase. class DownloadClient : public download::Client { … }; } // namespace background_fetch #endif // COMPONENTS_BACKGROUND_FETCH_DOWNLOAD_CLIENT_H_