Index: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp |
index 486233eceba39c2b895370a55926a30f60a6ee9f..77d6c371703b9e338536cbcf1707dc1962085519 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp |
@@ -110,12 +110,12 @@ void continueWithPolicyIgnoreImpl(LocalFrame* frame, DocumentLoader* loader, uns |
didReceiveResourceResponseButCanceledImpl(frame, loader, identifier, r); |
} |
-void willDestroyResourceImpl(Resource* cachedResource) |
+void removedResourceFromMemoryCacheImpl(Resource* cachedResource) |
{ |
ASSERT(isMainThread()); |
for (InstrumentingAgents* instrumentingAgents: instrumentingAgentsSet()) { |
if (InspectorResourceAgent* inspectorResourceAgent = instrumentingAgents->inspectorResourceAgent()) |
- inspectorResourceAgent->willDestroyResource(cachedResource); |
+ inspectorResourceAgent->removedResourceFromMemoryCache(cachedResource); |
} |
} |