#include "chrome/browser/ui/views/autofill/popup/lazy_loading_image_view.h"
#include "base/check.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/base/models/image_model.h"
namespace autofill {
LazyLoadingImageView::LazyLoadingImageView(gfx::Size size,
const ui::ImageModel& placeholder,
ImageLoader loader)
: … { … }
LazyLoadingImageView::~LazyLoadingImageView() = default;
void LazyLoadingImageView::OnLoadSuccess(const gfx::Image& image) { … }
void LazyLoadingImageView::OnPaint(gfx::Canvas* canvas) { … }
gfx::Image LazyLoadingImageView::GetImageForTesting() const { … }
BEGIN_METADATA(…)
}