| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
| 6 // header guard. | 6 // header guard. |
| 7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 int /* stream id */, | 519 int /* stream id */, |
| 520 AudioOutputStream::State /* new state */, | 520 AudioOutputStream::State /* new state */, |
| 521 int /* additional information (e.g. platform specific | 521 int /* additional information (e.g. platform specific |
| 522 error code*/) | 522 error code*/) |
| 523 | 523 |
| 524 IPC_MESSAGE_ROUTED3(ViewMsg_NotifyAudioStreamVolume, | 524 IPC_MESSAGE_ROUTED3(ViewMsg_NotifyAudioStreamVolume, |
| 525 int /* stream id */, | 525 int /* stream id */, |
| 526 double /* left channel */, | 526 double /* left channel */, |
| 527 double /* right channel */) | 527 double /* right channel */) |
| 528 | 528 |
| 529 // Notification that a move or resize renderer's containing window has |
| 530 // started. |
| 531 IPC_MESSAGE_ROUTED0(ViewMsg_MoveOrResizeStarted) |
| 529 IPC_END_MESSAGES(View) | 532 IPC_END_MESSAGES(View) |
| 530 | 533 |
| 531 | 534 |
| 532 //----------------------------------------------------------------------------- | 535 //----------------------------------------------------------------------------- |
| 533 // WebContents messages | 536 // WebContents messages |
| 534 // These are messages sent from the renderer to the browser process. | 537 // These are messages sent from the renderer to the browser process. |
| 535 | 538 |
| 536 IPC_BEGIN_MESSAGES(ViewHost) | 539 IPC_BEGIN_MESSAGES(ViewHost) |
| 537 // Sent by the renderer when it is creating a new window. The browser creates | 540 // Sent by the renderer when it is creating a new window. The browser creates |
| 538 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is | 541 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1210 IPC::Maybe<TransportDIB::Handle> /* DIB */) | 1213 IPC::Maybe<TransportDIB::Handle> /* DIB */) |
| 1211 | 1214 |
| 1212 // Since the browser keeps handles to the allocated transport DIBs, this | 1215 // Since the browser keeps handles to the allocated transport DIBs, this |
| 1213 // message is sent to tell the browser that it may release them when the | 1216 // message is sent to tell the browser that it may release them when the |
| 1214 // renderer is finished with them. | 1217 // renderer is finished with them. |
| 1215 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1218 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
| 1216 TransportDIB::Id /* DIB id */) | 1219 TransportDIB::Id /* DIB id */) |
| 1217 #endif | 1220 #endif |
| 1218 | 1221 |
| 1219 IPC_END_MESSAGES(ViewHost) | 1222 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |