| 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/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1387 // Graphics2D, plugin -> host -> plugin | 1387 // Graphics2D, plugin -> host -> plugin |
| 1388 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Graphics2D_Flush, | 1388 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Graphics2D_Flush, |
| 1389 ppapi::ViewData /* view_data */) | 1389 ppapi::ViewData /* view_data */) |
| 1390 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) | 1390 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_FlushAck) |
| 1391 | 1391 |
| 1392 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, | 1392 IPC_MESSAGE_CONTROL2(PpapiHostMsg_Graphics2D_ReadImageData, |
| 1393 PP_Resource /* image */, | 1393 PP_Resource /* image */, |
| 1394 PP_Point /* top_left */) | 1394 PP_Point /* top_left */) |
| 1395 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) | 1395 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Graphics2D_ReadImageDataAck) |
| 1396 | 1396 |
| 1397 // IOStreamResource ----------------------------------------------------------- |
| 1398 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IOStream_Init, |
| 1399 uint32_t /* size */) |
| 1400 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IOStream_Init, |
| 1401 uint32_t /* size */) |
| 1402 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IOStream_MoveLimit, |
| 1403 uint32_t /* offset */) |
| 1404 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IOStream_MoveLimit, |
| 1405 uint32_t /* offset */) |
| 1406 |
| 1397 // IsolatedFileSystem | 1407 // IsolatedFileSystem |
| 1398 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) | 1408 IPC_MESSAGE_CONTROL0(PpapiHostMsg_IsolatedFileSystem_Create) |
| 1399 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, | 1409 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IsolatedFileSystem_BrowserOpen, |
| 1400 PP_IsolatedFileSystemType_Private /* type */) | 1410 PP_IsolatedFileSystemType_Private /* type */) |
| 1401 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, | 1411 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_IsolatedFileSystem_BrowserOpenReply, |
| 1402 std::string /* fsid */) | 1412 std::string /* fsid */) |
| 1403 | 1413 |
| 1404 // NetworkMonitor. | 1414 // NetworkMonitor. |
| 1405 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkMonitor_Create) | 1415 IPC_MESSAGE_CONTROL0(PpapiHostMsg_NetworkMonitor_Create) |
| 1406 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkMonitor_NetworkList, | 1416 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_NetworkMonitor_NetworkList, |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2001 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2011 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
| 2002 PP_TalkPermission /* permission */) | 2012 PP_TalkPermission /* permission */) |
| 2003 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2013 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
| 2004 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2014 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
| 2005 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2015 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
| 2006 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2016 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
| 2007 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2017 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
| 2008 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2018 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
| 2009 | 2019 |
| 2010 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2020 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
| OLD | NEW |