| 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 dec7526441cb93d18b4e3bdee69e7ec6fbe11f18..0e6f1cd36f4eda1af3510277178768cb29ba46db 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp
|
| @@ -111,12 +111,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);
|
| }
|
| }
|
|
|
|
|