Avi Drissman | 8ba1bad | 2022-09-13 19:22:36 | [diff] [blame] | 1 | // Copyright 2021 The Chromium Authors |
Evan Stade | d705848 | 2021-03-25 14:47:53 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef COMPONENTS_BACKGROUND_FETCH_DOWNLOAD_CLIENT_H_ |
| 6 | #define COMPONENTS_BACKGROUND_FETCH_DOWNLOAD_CLIENT_H_ |
| 7 | |
Avi Drissman | 12be031 | 2023-01-11 09:16:09 | [diff] [blame] | 8 | #include "base/functional/callback.h" |
Keishi Hattori | 0e45c02 | 2021-11-27 09:25:52 | [diff] [blame] | 9 | #include "base/memory/raw_ptr.h" |
Evan Stade | d705848 | 2021-03-25 14:47:53 | [diff] [blame] | 10 | #include "components/download/public/background_service/client.h" |
| 11 | |
| 12 | namespace content { |
| 13 | class BrowserContext; |
| 14 | } // namespace content |
|
|