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 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1472 // terminated. | 1472 // terminated. |
1473 IPC_MESSAGE_CONTROL1(ViewHostMsg_SuddenTerminationChanged, | 1473 IPC_MESSAGE_CONTROL1(ViewHostMsg_SuddenTerminationChanged, |
1474 bool /* enabled */) | 1474 bool /* enabled */) |
1475 | 1475 |
1476 IPC_MESSAGE_ROUTED3( | 1476 IPC_MESSAGE_ROUTED3( |
1477 ViewHostMsg_SwapCompositorFrame, | 1477 ViewHostMsg_SwapCompositorFrame, |
1478 uint32 /* output_surface_id */, | 1478 uint32 /* output_surface_id */, |
1479 cc::CompositorFrame /* frame */, | 1479 cc::CompositorFrame /* frame */, |
1480 std::vector<IPC::Message> /* messages_to_deliver_with_frame */) | 1480 std::vector<IPC::Message> /* messages_to_deliver_with_frame */) |
1481 | 1481 |
1482 // Sent by the compositor when a flinging animation is stopped. | |
1483 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidStopFlinging) | |
1484 | |
1485 //--------------------------------------------------------------------------- | 1482 //--------------------------------------------------------------------------- |
1486 // Request for cryptographic operation messages: | 1483 // Request for cryptographic operation messages: |
1487 // These are messages from the renderer to the browser to perform a | 1484 // These are messages from the renderer to the browser to perform a |
1488 // cryptographic operation. | 1485 // cryptographic operation. |
1489 | 1486 |
1490 // Asks the browser process to generate a keypair for grabbing a client | 1487 // Asks the browser process to generate a keypair for grabbing a client |
1491 // certificate from a CA (<keygen> tag), and returns the signed public | 1488 // certificate from a CA (<keygen> tag), and returns the signed public |
1492 // key and challenge string. | 1489 // key and challenge string. |
1493 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, | 1490 IPC_SYNC_MESSAGE_CONTROL3_1(ViewHostMsg_Keygen, |
1494 uint32 /* key size index */, | 1491 uint32 /* key size index */, |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1679 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 1676 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
1680 // for details. | 1677 // for details. |
1681 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 1678 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
1682 LOGFONT /* font_data */, | 1679 LOGFONT /* font_data */, |
1683 base::string16 /* characters */) | 1680 base::string16 /* characters */) |
1684 #endif | 1681 #endif |
1685 | 1682 |
1686 // Adding a new message? Stick to the sort order above: first platform | 1683 // Adding a new message? Stick to the sort order above: first platform |
1687 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1684 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1688 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1685 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |