| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index 7e017ee531a34972b3d66a9fe2a053cabe0c95a1..dd4ca405bbf5b6af5393b61d05e1aa5ed718a8c4 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -534,14 +534,16 @@ void RenderFrameHostImpl::OnCrossSiteResponse(
|
| }
|
|
|
| void RenderFrameHostImpl::OnDeferredAfterResponseStarted(
|
| - const GlobalRequestID& global_request_id) {
|
| + const GlobalRequestID& global_request_id,
|
| + const scoped_refptr<net::HttpResponseHeaders>& headers,
|
| + const GURL& url) {
|
| frame_tree_node_->render_manager()->OnDeferredAfterResponseStarted(
|
| global_request_id, this);
|
|
|
| if (GetParent() || !delegate_->WillHandleDeferAfterResponseStarted())
|
| frame_tree_node_->render_manager()->ResumeResponseDeferredAtStart();
|
| else
|
| - delegate_->DidDeferAfterResponseStarted();
|
| + delegate_->DidDeferAfterResponseStarted(headers, url);
|
| }
|
|
|
| void RenderFrameHostImpl::SwapOut(RenderFrameProxyHost* proxy) {
|
|
|