OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
482 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, | 482 IPC_MESSAGE_ROUTED3(PpapiMsg_PPPVideoDecoder_ProvidePictureBuffers, |
483 ppapi::HostResource /* video_decoder */, | 483 ppapi::HostResource /* video_decoder */, |
484 uint32_t /* requested number of buffers */, | 484 uint32_t /* requested number of buffers */, |
485 PP_Size /* dimensions of buffers */) | 485 PP_Size /* dimensions of buffers */) |
486 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, | 486 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_DismissPictureBuffer, |
487 ppapi::HostResource /* video_decoder */, | 487 ppapi::HostResource /* video_decoder */, |
488 int32_t /* picture buffer id */) | 488 int32_t /* picture buffer id */) |
489 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, | 489 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_PictureReady, |
490 ppapi::HostResource /* video_decoder */, | 490 ppapi::HostResource /* video_decoder */, |
491 PP_Picture_Dev /* output picture */) | 491 PP_Picture_Dev /* output picture */) |
492 IPC_MESSAGE_ROUTED1(PpapiMsg_PPPVideoDecoder_NotifyEndOfStream, | |
493 ppapi::HostResource /* video_decoder */) | |
494 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, | 492 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPVideoDecoder_NotifyError, |
495 ppapi::HostResource /* video_decoder */, | 493 ppapi::HostResource /* video_decoder */, |
496 PP_VideoDecodeError_Dev /* error */) | 494 PP_VideoDecodeError_Dev /* error */) |
497 | 495 |
498 // ----------------------------------------------------------------------------- | 496 // ----------------------------------------------------------------------------- |
499 // These are from the plugin to the renderer. | 497 // These are from the plugin to the renderer. |
500 | 498 |
501 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel | 499 // Reply to PpapiMsg_CreateChannel. The handle will be NULL if the channel |
502 // could not be established. This could be because the IPC could not be created | 500 // could not be established. This could be because the IPC could not be created |
503 // for some weird reason, but more likely that the plugin failed to load or | 501 // for some weird reason, but more likely that the plugin failed to load or |
(...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1123 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) | 1121 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) |
1124 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, | 1122 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, |
1125 ppapi::HostResource /* video_decoder */, | 1123 ppapi::HostResource /* video_decoder */, |
1126 int32_t /* picture buffer id */) | 1124 int32_t /* picture buffer id */) |
1127 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, | 1125 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, |
1128 ppapi::HostResource /* video_decoder */) | 1126 ppapi::HostResource /* video_decoder */) |
1129 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, | 1127 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, |
1130 ppapi::HostResource /* video_decoder */) | 1128 ppapi::HostResource /* video_decoder */) |
1131 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, | 1129 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, |
1132 ppapi::HostResource /* video_decoder */) | 1130 ppapi::HostResource /* video_decoder */) |
OLD | NEW |