| 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 #include <string> | 6 #include <string> |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1321 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, | 1321 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBFlash_QuitMessageLoop, |
| 1322 PP_Instance /* instance */) | 1322 PP_Instance /* instance */) |
| 1323 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset, | 1323 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_GetLocalTimeZoneOffset, |
| 1324 PP_Instance /* instance */, | 1324 PP_Instance /* instance */, |
| 1325 PP_Time /* t */, | 1325 PP_Time /* t */, |
| 1326 double /* offset */) | 1326 double /* offset */) |
| 1327 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_IsRectTopmost, | 1327 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_IsRectTopmost, |
| 1328 PP_Instance /* instance */, | 1328 PP_Instance /* instance */, |
| 1329 PP_Rect /* rect */, | 1329 PP_Rect /* rect */, |
| 1330 PP_Bool /* result */) | 1330 PP_Bool /* result */) |
| 1331 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBFlash_FlashSetFullscreen, | |
| 1332 PP_Instance /* instance */, | |
| 1333 PP_Bool /* fullscreen */, | |
| 1334 PP_Bool /* result */) | |
| 1335 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBFlash_FlashGetScreenSize, | |
| 1336 PP_Instance /* instance */, | |
| 1337 PP_Bool /* result */, | |
| 1338 PP_Size /* size */) | |
| 1339 IPC_MESSAGE_ROUTED0(PpapiHostMsg_PPBFlash_UpdateActivity) | 1331 IPC_MESSAGE_ROUTED0(PpapiHostMsg_PPBFlash_UpdateActivity) |
| 1340 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlash_GetDeviceID, | 1332 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBFlash_GetDeviceID, |
| 1341 PP_Instance /* instance */, | 1333 PP_Instance /* instance */, |
| 1342 ppapi::proxy::SerializedVar /* id */) | 1334 ppapi::proxy::SerializedVar /* id */) |
| 1343 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef, | 1335 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiHostMsg_PPBFlash_OpenFileRef, |
| 1344 PP_Instance /* instance */, | 1336 PP_Instance /* instance */, |
| 1345 ppapi::HostResource /* file_ref */, | 1337 ppapi::HostResource /* file_ref */, |
| 1346 int32_t /* mode */, | 1338 int32_t /* mode */, |
| 1347 IPC::PlatformFileForTransit /* file_handle */, | 1339 IPC::PlatformFileForTransit /* file_handle */, |
| 1348 int32_t /* result */) | 1340 int32_t /* result */) |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1649 | 1641 |
| 1650 // Flash font file. | 1642 // Flash font file. |
| 1651 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create, | 1643 IPC_MESSAGE_CONTROL2(PpapiHostMsg_FlashFontFile_Create, |
| 1652 ppapi::proxy::SerializedFontDescription /* description */, | 1644 ppapi::proxy::SerializedFontDescription /* description */, |
| 1653 PP_PrivateFontCharset /* charset */) | 1645 PP_PrivateFontCharset /* charset */) |
| 1654 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFontFile_GetFontTable, | 1646 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFontFile_GetFontTable, |
| 1655 uint32_t /* table */) | 1647 uint32_t /* table */) |
| 1656 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply, | 1648 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FlashFontFile_GetFontTableReply, |
| 1657 std::string /* output */) | 1649 std::string /* output */) |
| 1658 | 1650 |
| 1651 // Flash fullscreen. |
| 1652 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FlashFullscreen_Create) |
| 1653 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashFullscreen_SetFullscreen, |
| 1654 PP_Bool /* fullscreen */) |
| 1655 |
| 1659 // FlashMenu ------------------------------------------------------------------ | 1656 // FlashMenu ------------------------------------------------------------------ |
| 1660 | 1657 |
| 1661 // Creates the flash menu with the given data. | 1658 // Creates the flash menu with the given data. |
| 1662 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashMenu_Create, | 1659 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashMenu_Create, |
| 1663 ppapi::proxy::SerializedFlashMenu /* menu_data */) | 1660 ppapi::proxy::SerializedFlashMenu /* menu_data */) |
| 1664 | 1661 |
| 1665 // Shows the menu at the given location relative to the plugin instance. | 1662 // Shows the menu at the given location relative to the plugin instance. |
| 1666 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashMenu_Show, | 1663 IPC_MESSAGE_CONTROL1(PpapiHostMsg_FlashMenu_Show, |
| 1667 PP_Point /* location */) | 1664 PP_Point /* location */) |
| 1668 | 1665 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1698 std::vector<ppapi::HostResource> /* buffers */, | 1695 std::vector<ppapi::HostResource> /* buffers */, |
| 1699 uint32_t /* buffer_size */) | 1696 uint32_t /* buffer_size */) |
| 1700 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, | 1697 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, |
| 1701 uint32_t /* status */) | 1698 uint32_t /* status */) |
| 1702 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, | 1699 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, |
| 1703 uint32_t /* error */) | 1700 uint32_t /* error */) |
| 1704 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, | 1701 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, |
| 1705 uint32_t /* buffer */) | 1702 uint32_t /* buffer */) |
| 1706 | 1703 |
| 1707 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1704 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |