Index: ios/chrome/browser/suggestions/image_fetcher_impl.mm |
diff --git a/ios/chrome/browser/suggestions/image_fetcher_impl.mm b/ios/chrome/browser/suggestions/image_fetcher_impl.mm |
index 70d93428d5d597d3fdd4bb2fe9b7ddd5c812bc81..2acde99c6f55714371ed1218a53c7f3f09f7a13a 100644 |
--- a/ios/chrome/browser/suggestions/image_fetcher_impl.mm |
+++ b/ios/chrome/browser/suggestions/image_fetcher_impl.mm |
@@ -58,7 +58,7 @@ void ImageFetcherImpl::StartOrQueueNetworkRequest( |
// Most likely always returns 1x images. |
UIImage* ui_image = [UIImage imageWithData:data scale:1]; |
if (ui_image) { |
- gfx::Image gfx_image(ui_image); |
+ gfx::Image gfx_image(ui_image, false); |
callback.Run(fetch_id, gfx_image); |
if (delegate_) { |
delegate_->OnImageFetched(fetch_id, gfx_image); |