Index: content/browser/frame_host/navigator.h |
diff --git a/content/browser/frame_host/navigator.h b/content/browser/frame_host/navigator.h |
index ce580d7310e1c247b9ae9887ed5d5d6d1836cd22..6e49dc3cb161c6ae91a9818faa701d398e2b3243 100644 |
--- a/content/browser/frame_host/navigator.h |
+++ b/content/browser/frame_host/navigator.h |
@@ -26,7 +26,8 @@ class NavigationControllerImpl; |
class NavigationEntryImpl; |
class NavigatorDelegate; |
class RenderFrameHostImpl; |
-struct NavigationBeforeCommitInfo; |
+struct CommitNavigationParams; |
+struct CommonNavigationParams; |
// Implementations of this interface are responsible for performing navigations |
// in a node of the FrameTree. Its lifetime is bound to all FrameTreeNode |
@@ -114,7 +115,9 @@ class CONTENT_EXPORT Navigator : public base::RefCounted<Navigator> { |
// 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) {}; |
+ const GURL& stream_url, |
+ const CommonNavigationParams& common_params, |
+ const CommitNavigationParams& commit_params) {} |
// Called when the first resource request for a given navigation is executed |
// so that it can be tracked into an histogram. |