| Index: content/browser/web_contents/web_contents_impl.h
 | 
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
 | 
| index 8278efbefb179207529d871450e75c25602ab472..2300740772b4a77897ebb02a8a1c485e7432d8bc 100644
 | 
| --- a/content/browser/web_contents/web_contents_impl.h
 | 
| +++ b/content/browser/web_contents/web_contents_impl.h
 | 
| @@ -313,6 +313,10 @@ class CONTENT_EXPORT WebContentsImpl
 | 
|    virtual void RemoveOverlayView() OVERRIDE;
 | 
|  #endif
 | 
|  
 | 
| +  // Notifies the main frame that it can continue navigation (if it was deferred
 | 
| +  // immediately at first response).
 | 
| +  virtual void ResumeResponseDeferredAtStart() OVERRIDE;
 | 
| +
 | 
|    // Implementation of PageNavigator.
 | 
|    virtual WebContents* OpenURL(const OpenURLParams& params) OVERRIDE;
 | 
|  
 | 
| @@ -328,6 +332,7 @@ class CONTENT_EXPORT WebContentsImpl
 | 
|    virtual void DidStartLoading(RenderFrameHost* render_frame_host,
 | 
|                                 bool to_different_document) OVERRIDE;
 | 
|    virtual void SwappedOut(RenderFrameHost* render_frame_host) OVERRIDE;
 | 
| +  virtual void DidDeferAfterResponseStarted() OVERRIDE;
 | 
|    virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE;
 | 
|    virtual void ShowContextMenu(RenderFrameHost* render_frame_host,
 | 
|                                 const ContextMenuParams& params) OVERRIDE;
 | 
| 
 |