Chromium Code Reviews| Index: Source/core/loader/FrameFetchContext.cpp |
| diff --git a/Source/core/loader/FrameFetchContext.cpp b/Source/core/loader/FrameFetchContext.cpp |
| index 5604f912d567f54875724432e5262c8748c5b749..c3b8185624b7d834839ae2e3901fa2a58ede36a6 100644 |
| --- a/Source/core/loader/FrameFetchContext.cpp |
| +++ b/Source/core/loader/FrameFetchContext.cpp |
| @@ -191,6 +191,7 @@ void FrameFetchContext::dispatchDidFinishLoading(DocumentLoader* loader, unsigne |
| void FrameFetchContext::dispatchDidFail(DocumentLoader* loader, unsigned long identifier, const ResourceError& error) |
| { |
| m_frame->loader().progress().completeProgress(identifier); |
| + m_frame->loader().client()->dispatchDidFinishLoading(loader, identifier); |
|
Nate Chapin
2014/09/15 23:39:35
We need to report resource load completion for bot
|
| TRACE_EVENT_INSTANT1(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "ResourceFinish", "data", InspectorResourceFinishEvent::data(identifier, 0, true)); |
| // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing. |
| InspectorInstrumentation::didFailLoading(m_frame, identifier, error); |