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 1439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1450 // terminated. | 1450 // terminated. |
1451 IPC_MESSAGE_CONTROL1(ViewHostMsg_SuddenTerminationChanged, | 1451 IPC_MESSAGE_CONTROL1(ViewHostMsg_SuddenTerminationChanged, |
1452 bool /* enabled */) | 1452 bool /* enabled */) |
1453 | 1453 |
1454 IPC_MESSAGE_ROUTED3( | 1454 IPC_MESSAGE_ROUTED3( |
1455 ViewHostMsg_SwapCompositorFrame, | 1455 ViewHostMsg_SwapCompositorFrame, |
1456 uint32 /* output_surface_id */, | 1456 uint32 /* output_surface_id */, |
1457 cc::CompositorFrame /* frame */, | 1457 cc::CompositorFrame /* frame */, |
1458 std::vector<IPC::Message> /* messages_to_deliver_with_frame */) | 1458 std::vector<IPC::Message> /* messages_to_deliver_with_frame */) |
1459 | 1459 |
1460 // Sent by the compositor when a flinging animation is stopped. | |
1461 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopFlinging) | |
1462 | |
1463 //--------------------------------------------------------------------------- | 1460 //--------------------------------------------------------------------------- |
1464 // Request for cryptographic operation messages: | 1461 // Request for cryptographic operation messages: |
1465 // These are messages from the renderer to the browser to perform a | 1462 // These are messages from the renderer to the browser to perform a |
1466 // cryptographic operation. | 1463 // cryptographic operation. |
1467 | 1464 |
1468 // Asks the browser process to generate a keypair for grabbing a client | 1465 // Asks the browser process to generate a keypair for grabbing a client |
1469 // certificate from a CA (<keygen> tag), and returns the signed public | 1466 // certificate from a CA (<keygen> tag), and returns the signed public |
1470 // key and challenge string. | 1467 // key and challenge string. |
1471 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, | 1468 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, |
1472 uint32 /* key size index */, | 1469 uint32 /* key size index */, |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1657 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1654 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
1658 // for details. | 1655 // for details. |
1659 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1656 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
1660 LOGFONT /* font_data */, | 1657 LOGFONT /* font_data */, |
1661 base::string16 /* characters */) | 1658 base::string16 /* characters */) |
1662 #endif | 1659 #endif |
1663 | 1660 |
1664 // Adding a new message? Stick to the sort order above: first platform | 1661 // Adding a new message? Stick to the sort order above: first platform |
1665 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1662 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1666 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1663 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |