Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 1881603002: Added SetLayerTransform to PPAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added Graphics2D 1.2 to histograms Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/proxy/graphics_2d_resource.cc ('k') | ppapi/tests/test_graphics_2d.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_CONTROL2(PpapiHostMsg_Graphics2D_SetLayerTransform,
1659 float /* scale */,
1660 PP_FloatPoint /* translate */)
1658 1661
1659 // Graphics2D, plugin -> host -> plugin 1662 // Graphics2D, plugin -> host -> plugin
1660 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush) 1663 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Graphics2D_Flush)
1661 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) 1664 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck)
1662 1665
1663 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, 1666 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData,
1664 PP_Resource /* image */, 1667 PP_Resource /* image */,
1665 PP_Point /* top_left */) 1668 PP_Point /* top_left */)
1666 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) 1669 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck)
1667 1670
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
2431 std::vector<ppapi::HostResource> /* buffers */, 2434 std::vector<ppapi::HostResource> /* buffers */,
2432 uint32_t /* buffer_size */) 2435 uint32_t /* buffer_size */)
2433 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2436 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2434 uint32_t /* status */) 2437 uint32_t /* status */)
2435 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2438 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2436 uint32_t /* error */) 2439 uint32_t /* error */)
2437 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2440 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2438 uint32_t /* buffer */) 2441 uint32_t /* buffer */)
2439 2442
2440 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2443 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/graphics_2d_resource.cc ('k') | ppapi/tests/test_graphics_2d.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698