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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 ppapi::HostResource /* video_decoder */, | 704 ppapi::HostResource /* video_decoder */, |
705 int32_t /* picture buffer id */) | 705 int32_t /* picture buffer id */) |
706 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, | 706 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, |
707 ppapi::HostResource /* video_decoder */, | 707 ppapi::HostResource /* video_decoder */, |
708 PP_Picture_Dev /* output picture */) | 708 PP_Picture_Dev /* output picture */) |
709 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, | 709 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, |
710 ppapi::HostResource /* video_decoder */, | 710 ppapi::HostResource /* video_decoder */, |
711 PP_VideoDecodeError_Dev /* error */) | 711 PP_VideoDecodeError_Dev /* error */) |
712 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 712 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
713 | 713 |
| 714 IPC_MESSAGE_CONTROL1(PpapiHostMsg_IdleState, |
| 715 bool /* idle */) |
| 716 |
714 // ----------------------------------------------------------------------------- | 717 // ----------------------------------------------------------------------------- |
715 // These are from the plugin to the renderer. | 718 // These are from the plugin to the renderer. |
716 | 719 |
717 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel | 720 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel |
718 // could not be established. This could be because the IPC could not be created | 721 // could not be established. This could be because the IPC could not be created |
719 // for some weird reason, but more likely that the plugin failed to load or | 722 // for some weird reason, but more likely that the plugin failed to load or |
720 // initialize properly. | 723 // initialize properly. |
721 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ChannelCreated, | 724 IPC_MESSAGE_CONTROL1(PpapiHostMsg_ChannelCreated, |
722 IPC::ChannelHandle /* handle */) | 725 IPC::ChannelHandle /* handle */) |
723 | 726 |
(...skipping 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1966 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, | 1969 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, |
1967 PP_TalkPermission /* permission */) | 1970 PP_TalkPermission /* permission */) |
1968 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) | 1971 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) |
1969 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) | 1972 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) |
1970 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) | 1973 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) |
1971 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) | 1974 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) |
1972 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) | 1975 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) |
1973 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) | 1976 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) |
1974 | 1977 |
1975 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) | 1978 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) |
OLD | NEW |