| Index: content/browser/frame_host/navigator.h
|
| diff --git a/content/browser/frame_host/navigator.h b/content/browser/frame_host/navigator.h
|
| index e25671d0f1a42f046f5db8108755b1623df27e71..f754830258a14ba315f6f388a62bb0a63b1c4073 100644
|
| --- a/content/browser/frame_host/navigator.h
|
| +++ b/content/browser/frame_host/navigator.h
|
| @@ -25,7 +25,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
|
| @@ -113,7 +114,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) {}
|
|
|
| protected:
|
| friend class base::RefCounted<Navigator>;
|
|
|