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 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 ppapi::HostResource /* video_decoder */, | 719 ppapi::HostResource /* video_decoder */, |
720 int32_t /* picture buffer id */) | 720 int32_t /* picture buffer id */) |
721 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, | 721 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, |
722 ppapi::HostResource /* video_decoder */, | 722 ppapi::HostResource /* video_decoder */, |
723 PP_Picture_Dev /* output picture */) | 723 PP_Picture_Dev /* output picture */) |
724 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, | 724 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, |
725 ppapi::HostResource /* video_decoder */, | 725 ppapi::HostResource /* video_decoder */, |
726 PP_VideoDecodeError_Dev /* error */) | 726 PP_VideoDecodeError_Dev /* error */) |
727 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 727 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
728 | 728 |
| 729 // Reports to the browser that a plugin has been active. |
| 730 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Keepalive) |
| 731 |
729 // ----------------------------------------------------------------------------- | 732 // ----------------------------------------------------------------------------- |
730 // These are from the plugin to the renderer. | 733 // These are from the plugin to the renderer. |
731 | 734 |
732 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel | 735 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel |
733 // could not be established. This could be because the IPC could not be created | 736 // could not be established. This could be because the IPC could not be created |
734 // for some weird reason, but more likely that the plugin failed to load or | 737 // for some weird reason, but more likely that the plugin failed to load or |
735 // initialize properly. | 738 // initialize properly. |
736 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ChannelCreated, | 739 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ChannelCreated, |
737 IPC::ChannelHandle /* handle */) | 740 IPC::ChannelHandle /* handle */) |
738 | 741 |
(...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1999 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 2002 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
2000 PP_TalkPermission /* permission */) | 2003 PP_TalkPermission /* permission */) |
2001 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 2004 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
2002 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 2005 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
2003 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 2006 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
2004 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 2007 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
2005 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 2008 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
2006 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 2009 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
2007 | 2010 |
2008 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 2011 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |