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 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 ppapi::HostResource /* video_decoder */, | 716 ppapi::HostResource /* video_decoder */, |
717 int32_t /* picture buffer id */) | 717 int32_t /* picture buffer id */) |
718 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, | 718 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, |
719 ppapi::HostResource /* video_decoder */, | 719 ppapi::HostResource /* video_decoder */, |
720 PP_Picture_Dev /* output picture */) | 720 PP_Picture_Dev /* output picture */) |
721 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, | 721 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, |
722 ppapi::HostResource /* video_decoder */, | 722 ppapi::HostResource /* video_decoder */, |
723 PP_VideoDecodeError_Dev /* error */) | 723 PP_VideoDecodeError_Dev /* error */) |
724 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 724 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
725 | 725 |
| 726 // plugin_main_nacl reports changes in idle status from the plugin to browser. |
| 727 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IdleStateChange, |
| 728 bool /* idle */) |
| 729 |
726 // ----------------------------------------------------------------------------- | 730 // ----------------------------------------------------------------------------- |
727 // These are from the plugin to the renderer. | 731 // These are from the plugin to the renderer. |
728 | 732 |
729 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel | 733 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel |
730 // could not be established. This could be because the IPC could not be created | 734 // could not be established. This could be because the IPC could not be created |
731 // for some weird reason, but more likely that the plugin failed to load or | 735 // for some weird reason, but more likely that the plugin failed to load or |
732 // initialize properly. | 736 // initialize properly. |
733 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ChannelCreated, | 737 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ChannelCreated, |
734 IPC::ChannelHandle /* handle */) | 738 IPC::ChannelHandle /* handle */) |
735 | 739 |
(...skipping 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1981 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 1985 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
1982 PP_TalkPermission /* permission */) | 1986 PP_TalkPermission /* permission */) |
1983 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 1987 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
1984 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 1988 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
1985 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 1989 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
1986 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 1990 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
1987 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 1991 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
1988 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 1992 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
1989 | 1993 |
1990 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1994 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |