OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included message file, no include guard. | 5 // Multiply-included message file, no include guard. |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 bool) /* active */ | 138 bool) /* active */ |
139 | 139 |
140 // Sent to the viewer process to set the cursor position. | 140 // Sent to the viewer process to set the cursor position. |
141 IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_SetCursorPos, | 141 IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_SetCursorPos, |
142 int, /* x */ | 142 int, /* x */ |
143 int) /* y */ | 143 int) /* y */ |
144 | 144 |
145 // Ack sent by the viewer process indicating that the SetCursorPos operation | 145 // Ack sent by the viewer process indicating that the SetCursorPos operation |
146 // was completed. | 146 // was completed. |
147 IPC_MESSAGE_CONTROL0(MetroViewerHostMsg_SetCursorPosAck) | 147 IPC_MESSAGE_CONTROL0(MetroViewerHostMsg_SetCursorPosAck) |
| 148 |
| 149 // Sent from the metro viewer process to the browser process to indicate that |
| 150 // the viewer window size has changed. |
| 151 IPC_MESSAGE_CONTROL2(MetroViewerHostMsg_WindowSizeChanged, |
| 152 uint32, /* width */ |
| 153 uint32) /* height */ |
OLD | NEW |