#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_UI_AUTOFILL_IMAGE_FETCHER_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_UI_AUTOFILL_IMAGE_FETCHER_H_
#include <memory>
#include <optional>
#include "base/barrier_callback.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "components/autofill/core/browser/ui/autofill_image_fetcher_base.h"
class GURL;
namespace gfx {
class Image;
}
namespace image_fetcher {
class ImageFetcher;
struct RequestMetadata;
}
namespace autofill {
class AutofillImageFetcher : public AutofillImageFetcherBase { … };
}
#endif