#ifndef COMPONENTS_BACKGROUND_FETCH_BACKGROUND_FETCH_DELEGATE_BASE_H_
#define COMPONENTS_BACKGROUND_FETCH_BACKGROUND_FETCH_DELEGATE_BASE_H_
#include <cstdint>
#include <map>
#include <memory>
#include <set>
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "components/download/public/background_service/download_params.h"
#include "content/public/browser/background_fetch_delegate.h"
#include "ui/gfx/image/image.h"
#include "url/origin.h"
namespace content {
class BrowserContext;
}
namespace download {
class BackgroundDownloadService;
}
namespace background_fetch {
struct JobDetails;
class BackgroundFetchDelegateBase : public content::BackgroundFetchDelegate { … };
}
#endif