| Index: content/renderer/render_frame_impl.h
|
| diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
|
| index 327d850ed85e25dfdf6c288f6b80c5b2633cd11a..47199c01ab68065c12e238cc6a2b6acf3f161db4 100644
|
| --- a/content/renderer/render_frame_impl.h
|
| +++ b/content/renderer/render_frame_impl.h
|
| @@ -103,6 +103,7 @@ struct CommitNavigationParams;
|
| struct CommonNavigationParams;
|
| struct CustomContextMenuContext;
|
| struct FrameReplicationState;
|
| +struct HistoryNavigationParams;
|
| struct RequestNavigationParams;
|
| struct ResourceResponseHead;
|
|
|
| @@ -633,7 +634,8 @@ class CONTENT_EXPORT RenderFrameImpl
|
| void OnCommitNavigation(const ResourceResponseHead& response,
|
| const GURL& stream_url,
|
| const CommonNavigationParams& common_params,
|
| - const CommitNavigationParams& commit_params);
|
| + const CommitNavigationParams& commit_params,
|
| + const HistoryNavigationParams& history_params);
|
|
|
| // Virtual since overridden by WebTestProxy for layout tests.
|
| virtual blink::WebNavigationPolicy DecidePolicyForNavigation(
|
| @@ -701,7 +703,7 @@ class CONTENT_EXPORT RenderFrameImpl
|
| const GURL& url,
|
| bool check_for_stale_navigation,
|
| bool is_history_navigation,
|
| - int current_history_list_offset,
|
| + const HistoryNavigationParams& history_params,
|
| bool* is_reload,
|
| blink::WebURLRequest::CachePolicy* cache_policy);
|
|
|
|
|