| Index: chrome/common/render_messages_internal.h
|
| diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
|
| index b2cb0bff34ae255d5a906ce445c4cdaf55c40900..326202af316ca89c308b13ee0f0451a0591699c8 100644
|
| --- a/chrome/common/render_messages_internal.h
|
| +++ b/chrome/common/render_messages_internal.h
|
| @@ -1234,18 +1234,20 @@ IPC_BEGIN_MESSAGES(ViewHost)
|
| std::string /* security_origin */)
|
|
|
| // Sent when the renderer starts a provisional load for a frame.
|
| - IPC_MESSAGE_ROUTED2(ViewHostMsg_DidStartProvisionalLoadForFrame,
|
| + IPC_MESSAGE_ROUTED3(ViewHostMsg_DidStartProvisionalLoadForFrame,
|
| + long long /* frame_id */,
|
| bool /* true if it is the main frame */,
|
| GURL /* url */)
|
|
|
| // Sent when the renderer fails a provisional load with an error.
|
| - IPC_MESSAGE_ROUTED4(ViewHostMsg_DidFailProvisionalLoadWithError,
|
| + IPC_MESSAGE_ROUTED5(ViewHostMsg_DidFailProvisionalLoadWithError,
|
| + long long /* frame_id */,
|
| bool /* true if it is the main frame */,
|
| int /* error_code */,
|
| GURL /* url */,
|
| bool /* true if the failure is the result of
|
| navigating to a POST again and we're going to
|
| - show the POST interstitial */ )
|
| + show the POST interstitial */)
|
|
|
| // Tells the render view that a ViewHostMsg_PaintAtSize message was
|
| // processed, and the DIB is ready for use. |tag| has the same value that
|
|
|