| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "base/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
| 9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 1433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 IPC_MESSAGE_CONTROL1(ViewHostMsg_SuddenTerminationChanged, | 1444 IPC_MESSAGE_CONTROL1(ViewHostMsg_SuddenTerminationChanged, |
| 1445 bool /* enabled */) | 1445 bool /* enabled */) |
| 1446 | 1446 |
| 1447 IPC_MESSAGE_ROUTED2(ViewHostMsg_SwapCompositorFrame, | 1447 IPC_MESSAGE_ROUTED2(ViewHostMsg_SwapCompositorFrame, |
| 1448 uint32 /* output_surface_id */, | 1448 uint32 /* output_surface_id */, |
| 1449 cc::CompositorFrame /* frame */) | 1449 cc::CompositorFrame /* frame */) |
| 1450 | 1450 |
| 1451 // Sent by the compositor when a flinging animation is stopped. | 1451 // Sent by the compositor when a flinging animation is stopped. |
| 1452 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopFlinging) | 1452 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopFlinging) |
| 1453 | 1453 |
| 1454 // Sent when a WebUI page that uses Mojo has executed its 'main' module. Our |
| 1455 // javascript based testing framework must wait until this has happened. |
| 1456 IPC_MESSAGE_ROUTED0(ViewHostMsg_WebUIMojoMainRan) |
| 1457 |
| 1454 //--------------------------------------------------------------------------- | 1458 //--------------------------------------------------------------------------- |
| 1455 // Request for cryptographic operation messages: | 1459 // Request for cryptographic operation messages: |
| 1456 // These are messages from the renderer to the browser to perform a | 1460 // These are messages from the renderer to the browser to perform a |
| 1457 // cryptographic operation. | 1461 // cryptographic operation. |
| 1458 | 1462 |
| 1459 // Asks the browser process to generate a keypair for grabbing a client | 1463 // Asks the browser process to generate a keypair for grabbing a client |
| 1460 // certificate from a CA (<keygen> tag), and returns the signed public | 1464 // certificate from a CA (<keygen> tag), and returns the signed public |
| 1461 // key and challenge string. | 1465 // key and challenge string. |
| 1462 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, | 1466 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, |
| 1463 uint32 /* key size index */, | 1467 uint32 /* key size index */, |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1690 // Since the browser keeps handles to the allocated transport DIBs, this | 1694 // Since the browser keeps handles to the allocated transport DIBs, this |
| 1691 // message is sent to tell the browser that it may release them when the | 1695 // message is sent to tell the browser that it may release them when the |
| 1692 // renderer is finished with them. | 1696 // renderer is finished with them. |
| 1693 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1697 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
| 1694 TransportDIB::Id /* DIB id */) | 1698 TransportDIB::Id /* DIB id */) |
| 1695 #endif | 1699 #endif |
| 1696 | 1700 |
| 1697 // Adding a new message? Stick to the sort order above: first platform | 1701 // Adding a new message? Stick to the sort order above: first platform |
| 1698 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1702 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1699 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1703 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |