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 // Multiply-included message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 1637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1648 bool /* src_rect_specified */, | 1648 bool /* src_rect_specified */, |
1649 PP_Rect /* src_rect */) | 1649 PP_Rect /* src_rect */) |
1650 IPC_MESSAGE_CONTROL3(PpapiHostMsg_Graphics2D_Scroll, | 1650 IPC_MESSAGE_CONTROL3(PpapiHostMsg_Graphics2D_Scroll, |
1651 bool /* clip_specified */, | 1651 bool /* clip_specified */, |
1652 PP_Rect /* clip */, | 1652 PP_Rect /* clip */, |
1653 PP_Point /* amount */) | 1653 PP_Point /* amount */) |
1654 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Graphics2D_ReplaceContents, | 1654 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Graphics2D_ReplaceContents, |
1655 ppapi::HostResource /* image_data */) | 1655 ppapi::HostResource /* image_data */) |
1656 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Graphics2D_SetScale, | 1656 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Graphics2D_SetScale, |
1657 float /* scale */) | 1657 float /* scale */) |
1658 IPC_MESSAGE_CONTROL3(PpapiHostMsg_Graphics2D_SetLayerTransform, | |
1659 float /* scale */, | |
1660 PP_Point /* Origin */, | |
wjmaclean
2016/04/13 14:47:19
Don't capitalize variable names, even in comments.
alessandroa
2016/04/21 15:39:21
Acknowledged.
| |
1661 PP_Point /* Transform */) | |
1658 | 1662 |
1659 // Graphics2D, plugin -> host -> plugin | 1663 // Graphics2D, plugin -> host -> plugin |
1660 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush) | 1664 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush) |
1661 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) | 1665 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) |
1662 | 1666 |
1663 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, | 1667 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, |
1664 PP_Resource /* image */, | 1668 PP_Resource /* image */, |
1665 PP_Point /* top_left */) | 1669 PP_Point /* top_left */) |
1666 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) | 1670 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) |
1667 | 1671 |
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2431 std::vector<ppapi::HostResource> /* buffers */, | 2435 std::vector<ppapi::HostResource> /* buffers */, |
2432 uint32_t /* buffer_size */) | 2436 uint32_t /* buffer_size */) |
2433 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 2437 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
2434 uint32_t /* status */) | 2438 uint32_t /* status */) |
2435 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 2439 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
2436 uint32_t /* error */) | 2440 uint32_t /* error */) |
2437 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 2441 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
2438 uint32_t /* buffer */) | 2442 uint32_t /* buffer */) |
2439 | 2443 |
2440 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2444 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |