| Index: content/common/frame_messages.h
|
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
|
| index 1154a73aeffbde5b616b7b8ed11b85be077aba59..965012f1d7353c1b8da2858be10d12851cf1ec7e 100644
|
| --- a/content/common/frame_messages.h
|
| +++ b/content/common/frame_messages.h
|
| @@ -340,6 +340,7 @@ IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams)
|
| IPC_STRUCT_TRAITS_MEMBER(lofi_state)
|
| IPC_STRUCT_TRAITS_MEMBER(navigation_start)
|
| IPC_STRUCT_TRAITS_MEMBER(method)
|
| + IPC_STRUCT_TRAITS_MEMBER(post_data)
|
| IPC_STRUCT_TRAITS_END()
|
|
|
| IPC_STRUCT_TRAITS_BEGIN(content::BeginNavigationParams)
|
| @@ -352,7 +353,6 @@ IPC_STRUCT_TRAITS_END()
|
|
|
| IPC_STRUCT_TRAITS_BEGIN(content::StartNavigationParams)
|
| IPC_STRUCT_TRAITS_MEMBER(extra_headers)
|
| - IPC_STRUCT_TRAITS_MEMBER(browser_initiated_post_data)
|
| #if defined(OS_ANDROID)
|
| IPC_STRUCT_TRAITS_MEMBER(has_user_gesture)
|
| #endif
|
| @@ -844,12 +844,11 @@ IPC_MESSAGE_ROUTED1(FrameMsg_SelectPopupMenuItem,
|
| // Tells the renderer that a navigation is ready to commit. The renderer should
|
| // request |stream_url| to get access to the stream containing the body of the
|
| // response.
|
| -IPC_MESSAGE_ROUTED5(FrameMsg_CommitNavigation,
|
| +IPC_MESSAGE_ROUTED4(FrameMsg_CommitNavigation,
|
| content::ResourceResponseHead, /* response */
|
| GURL, /* stream_url */
|
| content::CommonNavigationParams, /* common_params */
|
| - content::RequestNavigationParams, /* request_params */
|
| - scoped_refptr<content::ResourceRequestBody> /* post_data */)
|
| + content::RequestNavigationParams) /* request_params */
|
|
|
| // PlzNavigate
|
| // Tells the renderer that a navigation failed with the error code |error_code|
|
| @@ -1351,10 +1350,9 @@ IPC_MESSAGE_ROUTED5(FrameHostMsg_DidLoadResourceFromMemoryCache,
|
|
|
| // PlzNavigate
|
| // Tells the browser to perform a navigation.
|
| -IPC_MESSAGE_ROUTED3(FrameHostMsg_BeginNavigation,
|
| +IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation,
|
| content::CommonNavigationParams,
|
| - content::BeginNavigationParams,
|
| - scoped_refptr<content::ResourceRequestBody>)
|
| + content::BeginNavigationParams)
|
|
|
| // Sent as a response to FrameMsg_VisualStateRequest.
|
| // The message is delivered using RenderWidget::QueueMessage.
|
|
|