Tsuyoshi Horo | 2932389 | 2023-10-26 01:42:39 | [diff] [blame] | 1 | // Copyright 2023 The Chromium Authors |
| 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 CONTENT_RENDERER_BACKGROUND_RESOURCE_FETCH_ASSETS_H_ |
| 6 | #define CONTENT_RENDERER_BACKGROUND_RESOURCE_FETCH_ASSETS_H_ |
| 7 | |
| 8 | #include "third_party/blink/public/platform/web_background_resource_fetch_assets.h" |
| 9 | |
| 10 | namespace network { |
| 11 | class PendingSharedURLLoaderFactory; |
| 12 | } // namespace network |
| 13 | |
| 14 | namespace content { |
| 15 | |
| 16 | // An implementation of WebBackgroundResourceFetchAssets. |
|
|