#ifndef COMPONENTS_DOWNLOAD_PUBLIC_COMMON_DOWNLOAD_ITEM_FACTORY_H_
#define COMPONENTS_DOWNLOAD_PUBLIC_COMMON_DOWNLOAD_ITEM_FACTORY_H_
#include <stdint.h>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "components/download/public/common/download_export.h"
#include "components/download/public/common/download_item.h"
#include "components/download/public/common/download_job.h"
#include "url/origin.h"
class GURL;
namespace base {
class FilePath;
}
namespace download {
struct DownloadCreateInfo;
class DownloadItemImpl;
class DownloadItemImplDelegate;
class COMPONENTS_DOWNLOAD_EXPORT DownloadItemFactory { … };
}
#endif