| Index: content/common/frame_messages.h
|
| diff --git a/content/common/frame_messages.h b/content/common/frame_messages.h
|
| index e4a40907d97fd42a0fdb5d60870821d5c3d368c5..f4fc8b5b1e3bbe4eca185a760961e2e0d1bd0e88 100644
|
| --- a/content/common/frame_messages.h
|
| +++ b/content/common/frame_messages.h
|
| @@ -382,12 +382,17 @@ IPC_STRUCT_BEGIN(FrameMsg_NewFrame_Params)
|
| IPC_STRUCT_MEMBER(FrameMsg_NewFrame_WidgetParams, widget_params)
|
| IPC_STRUCT_END()
|
|
|
| +// Parameters included with an OpenURL request. |frame_unique_name| is only
|
| +// specified if |is_history_navigation_in_new_child| is true, for the case that
|
| +// the browser process should look for an existing history item for the frame.
|
| IPC_STRUCT_BEGIN(FrameHostMsg_OpenURL_Params)
|
| IPC_STRUCT_MEMBER(GURL, url)
|
| IPC_STRUCT_MEMBER(content::Referrer, referrer)
|
| IPC_STRUCT_MEMBER(WindowOpenDisposition, disposition)
|
| IPC_STRUCT_MEMBER(bool, should_replace_current_entry)
|
| IPC_STRUCT_MEMBER(bool, user_gesture)
|
| + IPC_STRUCT_MEMBER(bool, is_history_navigation_in_new_child)
|
| + IPC_STRUCT_MEMBER(std::string, frame_unique_name)
|
| IPC_STRUCT_END()
|
|
|
| IPC_STRUCT_BEGIN(FrameMsg_TextTrackSettings_Params)
|
|
|