Index: content/browser/frame_host/render_frame_host_manager.h |
diff --git a/content/browser/frame_host/render_frame_host_manager.h b/content/browser/frame_host/render_frame_host_manager.h |
index 48a5f24b6f4e79f999567b0770c82fd6565c22ae..7d4891793e302e5cfde327b4648142367646c588 100644 |
--- a/content/browser/frame_host/render_frame_host_manager.h |
+++ b/content/browser/frame_host/render_frame_host_manager.h |
@@ -40,9 +40,10 @@ class RenderViewHost; |
class RenderViewHostImpl; |
class RenderWidgetHostDelegate; |
class RenderWidgetHostView; |
+class StreamHandle; |
class TestWebContents; |
class WebUIImpl; |
-struct NavigationBeforeCommitInfo; |
+struct ResourceResponse; |
// Manages RenderFrameHosts for a FrameTreeNode. This class acts as a state |
// machine to make cross-process navigations in a frame possible. |
@@ -328,7 +329,9 @@ class CONTENT_EXPORT RenderFrameHostManager : public NotificationObserver { |
// PlzNavigate: Called when a navigation request has received a response, to |
// select a renderer to use for the navigation. |
- void CommitNavigation(const NavigationBeforeCommitInfo& info); |
+ void CommitNavigation(const GURL& url, |
+ ResourceResponse* response, |
+ scoped_ptr<StreamHandle> body); |
private: |
friend class RenderFrameHostManagerTest; |