| Index: chrome/common/render_messages_internal.h
|
| diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
|
| index f4fb2f64c5bc9b40007afb01c58542b45d128ea4..26ca7bd3b72569adf80bb2d3df70b559b41e247c 100644
|
| --- a/chrome/common/render_messages_internal.h
|
| +++ b/chrome/common/render_messages_internal.h
|
| @@ -153,8 +153,9 @@ IPC_BEGIN_MESSAGES(View)
|
| // it. In response to this message, the host generates a
|
| // ViewHostMsg_PaintAtSize_ACK message. Note that the DIB *must* be
|
| // the right size to receive an RGBA image at the |desired_size|.
|
| - IPC_MESSAGE_ROUTED3(ViewMsg_PaintAtSize,
|
| + IPC_MESSAGE_ROUTED4(ViewMsg_PaintAtSize,
|
| TransportDIB::Handle /* dib_handle */,
|
| + int /* sequence_num */,
|
| gfx::Size /* page_size */,
|
| gfx::Size /* desired_size */)
|
|
|
| @@ -1125,7 +1126,7 @@ IPC_BEGIN_MESSAGES(ViewHost)
|
| // Tells the render view that a ViewHostMsg_PaintAtSize message was
|
| // processed, and the DIB is ready for use.
|
| IPC_MESSAGE_ROUTED2(ViewHostMsg_PaintAtSize_ACK,
|
| - TransportDIB::Handle /* dib_handle */,
|
| + int /* sequence_num */,
|
| gfx::Size /* size */)
|
|
|
| // Sent to update part of the view. In response to this message, the host
|
|
|