| 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 ee5311a1c1eb426c6bffc7d74629525c6066b06c..b6550f6c490247cabdf38863eedc304c30616499 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp
|
| @@ -183,17 +183,6 @@ void continueWithPolicyIgnore(LocalFrame* frame, DocumentLoader* loader, unsigne
|
| didReceiveResourceResponseButCanceled(frame, loader, identifier, r, resource);
|
| }
|
|
|
| -void willDestroyResource(Resource* cachedResource)
|
| -{
|
| - ASSERT(isMainThread());
|
| - for (InstrumentingAgents* instrumentingAgents: instrumentingAgentsSet()) {
|
| - if (!instrumentingAgents->hasInspectorResourceAgents())
|
| - continue;
|
| - for (InspectorResourceAgent* resourceAgent : instrumentingAgents->inspectorResourceAgents())
|
| - resourceAgent->willDestroyResource(cachedResource);
|
| - }
|
| -}
|
| -
|
| bool collectingHTMLParseErrors(Document* document)
|
| {
|
| ASSERT(isMainThread());
|
|
|