| Index: content/common/view_messages.h
|
| diff --git a/content/common/view_messages.h b/content/common/view_messages.h
|
| index 10388c0583d20fbf319254d109f0cd84fb8100cf..538f913b7f6ec7017c27723635ac0c9540e35ea5 100644
|
| --- a/content/common/view_messages.h
|
| +++ b/content/common/view_messages.h
|
| @@ -1390,9 +1390,10 @@ IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent,
|
| GURL /* target URL */)
|
|
|
| // Sent when the renderer starts a provisional load for a frame.
|
| -IPC_MESSAGE_ROUTED3(ViewHostMsg_DidStartProvisionalLoadForFrame,
|
| +IPC_MESSAGE_ROUTED4(ViewHostMsg_DidStartProvisionalLoadForFrame,
|
| int64 /* frame_id */,
|
| bool /* true if it is the main frame */,
|
| + bool /* true if the frame has an opener set */,
|
| GURL /* url */)
|
|
|
| // Sent when the renderer fails a provisional load with an error.
|
| @@ -1729,8 +1730,9 @@ IPC_MESSAGE_CONTROL1(ViewHostMsg_RevealFolderInOS,
|
| FilePath /* path */)
|
|
|
| // Sent when a provisional load on the main frame redirects.
|
| -IPC_MESSAGE_ROUTED3(ViewHostMsg_DidRedirectProvisionalLoad,
|
| +IPC_MESSAGE_ROUTED4(ViewHostMsg_DidRedirectProvisionalLoad,
|
| int /* page_id */,
|
| + bool /* true if the frame has an opener set */,
|
| GURL /* last url */,
|
| GURL /* url redirected to */)
|
|
|
|
|