Index: content/browser/frame_host/navigator.h |
diff --git a/content/browser/frame_host/navigator.h b/content/browser/frame_host/navigator.h |
index b47654839f0f9d70b0729f2c6284d931e1a4ed7b..cb98236e2ac730b0c2fc6989c19986e9f5c809dc 100644 |
--- a/content/browser/frame_host/navigator.h |
+++ b/content/browser/frame_host/navigator.h |
@@ -12,6 +12,7 @@ |
class GURL; |
struct FrameHostMsg_BeginNavigation_Params; |
+struct FrameMsg_CommitNavigation_Params; |
struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; |
@@ -25,7 +26,6 @@ class NavigationControllerImpl; |
class NavigationEntryImpl; |
class NavigatorDelegate; |
class RenderFrameHostImpl; |
-struct NavigationBeforeCommitInfo; |
// Implementations of this interface are responsible for performing navigations |
// in a node of the FrameTree. Its lifetime is bound to all FrameTreeNode |
@@ -123,8 +123,9 @@ class CONTENT_EXPORT Navigator : public base::RefCounted<Navigator> { |
// PlzNavigate |
// Signal |render_frame_host| that a navigation is ready to commit (the |
// response to the navigation request has been received). |
- virtual void CommitNavigation(RenderFrameHostImpl* render_frame_host, |
- const NavigationBeforeCommitInfo& info) {}; |
+ virtual void CommitNavigation( |
+ RenderFrameHostImpl* render_frame_host, |
+ const FrameMsg_CommitNavigation_Params& commit_navigation_params) {} |
protected: |
friend class base::RefCounted<Navigator>; |