Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(618)

Unified Diff: third_party/WebKit/Source/core/loader/resource/ImageResource.cpp

Issue 2602793003: Do not reload in ImageResource::fetch() (Closed)
Patch Set: Rebase fix Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/resource/ImageResource.cpp
diff --git a/third_party/WebKit/Source/core/loader/resource/ImageResource.cpp b/third_party/WebKit/Source/core/loader/resource/ImageResource.cpp
index 9029a454746656aba5192e4d459f54a8f1333219..65c4270aae6d23d88a9f1a3e77363266a9c1b093 100644
--- a/third_party/WebKit/Source/core/loader/resource/ImageResource.cpp
+++ b/third_party/WebKit/Source/core/loader/resource/ImageResource.cpp
@@ -171,18 +171,17 @@ ImageResource* ImageResource::fetch(FetchRequest& request,
return nullptr;
}
- ImageResource* resource = toImageResource(
+ return toImageResource(
fetcher->requestResource(request, ImageResourceFactory(request)));
- if (resource &&
- request.placeholderImageRequestType() != FetchRequest::AllowPlaceholder &&
- resource->shouldShowPlaceholder()) {
- // If the image is a placeholder, but this fetch doesn't allow a
- // placeholder, then load the original image. Note that the cache is not
- // bypassed here - it should be fine to use a cached copy if possible.
- resource->reloadIfLoFiOrPlaceholderImage(
- fetcher, kReloadAlwaysWithExistingCachePolicy);
- }
- return resource;
+}
+
+bool ImageResource::canReuse(const FetchRequest& request) const {
+ // If the image is a placeholder, but this fetch doesn't allow a
+ // placeholder, then do not reuse this resource.
+ if (request.placeholderImageRequestType() != FetchRequest::AllowPlaceholder &&
+ m_placeholderOption != PlaceholderOption::DoNotReloadPlaceholder)
+ return false;
+ return true;
}
ImageResource* ImageResource::create(const ResourceRequest& request) {
@@ -488,8 +487,7 @@ void ImageResource::reloadIfLoFiOrPlaceholderImage(
DCHECK(!m_isSchedulingReload);
m_isSchedulingReload = true;
- if (policy != kReloadAlwaysWithExistingCachePolicy)
- setCachePolicyBypassingCache();
+ setCachePolicyBypassingCache();
setPreviewsStateNoTransform();

Powered by Google App Engine
This is Rietveld 408576698