Index: third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp |
diff --git a/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp b/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp |
index f7cd97d2d74b1e8baa52602f56d6fa1d452bc305..4645712450f2a148589d686df83eb60c40276817 100644 |
--- a/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp |
+++ b/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp |
@@ -380,7 +380,7 @@ void ResourceFetcher::updateMemoryCacheStats(Resource* resource, RevalidationPol |
// would be dead if MemoryCache holds weak references to Resource). |
// Currently we check references to Resource from ResourceClient and |
// |m_preloads| only, because they are major sources of references. |
- if (resource && !resource->hasClients() && (!m_preloads || !m_preloads->contains(resource))) { |
+ if (resource && !resource->hasClientsOrObservers() && (!m_preloads || !m_preloads->contains(resource))) { |
DEFINE_RESOURCE_HISTOGRAM("Dead."); |
} |
} |
@@ -459,7 +459,7 @@ PassRefPtrWillBeRawPtr<Resource> ResourceFetcher::requestResource(FetchRequest& |
return nullptr; |
} |
- if (!resource->hasClients()) |
+ if (!resource->hasClientsOrObservers()) |
m_deadStatsRecorder.update(policy); |
if (policy != Use) |
@@ -1094,7 +1094,7 @@ void ResourceFetcher::updateAllImageResourcePriorities() |
if (!resource->isImage()) |
continue; |
- ResourcePriority resourcePriority = resource->priorityFromClients(); |
+ ResourcePriority resourcePriority = resource->priorityFromObservers(); |
ResourceLoadPriority resourceLoadPriority = loadPriority(Resource::Image, FetchRequest(resource->resourceRequest(), FetchInitiatorInfo()), resourcePriority.visibility); |
if (resourceLoadPriority == resource->resourceRequest().priority()) |
continue; |