Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(706)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 703753002: Pepper: Expose visible_rect to PPB_VideoDecoder.GetPicture. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 1932 matching lines...) Expand 10 before | Expand all | Expand 10 after
1943 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_DecodeReply, 1943 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_DecodeReply,
1944 uint32_t /* shm_id */) 1944 uint32_t /* shm_id */)
1945 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoDecoder_RequestTextures, 1945 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_VideoDecoder_RequestTextures,
1946 uint32_t /* num_textures */, 1946 uint32_t /* num_textures */,
1947 PP_Size /* size */, 1947 PP_Size /* size */,
1948 uint32_t /* texture_target */, 1948 uint32_t /* texture_target */,
1949 std::vector<gpu::Mailbox> /* mailboxes*/) 1949 std::vector<gpu::Mailbox> /* mailboxes*/)
1950 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDecoder_AssignTextures, 1950 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDecoder_AssignTextures,
1951 PP_Size /* size */, 1951 PP_Size /* size */,
1952 std::vector<uint32_t> /* texture_ids */) 1952 std::vector<uint32_t> /* texture_ids */)
1953 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_VideoDecoder_PictureReady, 1953 IPC_MESSAGE_CONTROL3(PpapiPluginMsg_VideoDecoder_PictureReady,
1954 int32_t /* decode_id */, 1954 int32_t /* decode_id */,
1955 uint32_t /* texture_id */) 1955 uint32_t /* texture_id */,
1956 PP_Rect /* visible_rect */)
1956 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoDecoder_RecyclePicture, 1957 IPC_MESSAGE_CONTROL1(PpapiHostMsg_VideoDecoder_RecyclePicture,
1957 uint32_t /* texture_id */) 1958 uint32_t /* texture_id */)
1958 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_DismissPicture, 1959 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_DismissPicture,
1959 uint32_t /* texture_id */) 1960 uint32_t /* texture_id */)
1960 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Flush) 1961 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Flush)
1961 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_FlushReply) 1962 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_FlushReply)
1962 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Reset) 1963 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Reset)
1963 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_ResetReply) 1964 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_ResetReply)
1964 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_NotifyError, 1965 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_NotifyError,
1965 int32_t /* error */) 1966 int32_t /* error */)
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
2268 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 2269 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
2269 PP_TalkPermission /* permission */) 2270 PP_TalkPermission /* permission */)
2270 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 2271 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
2271 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 2272 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
2272 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 2273 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
2273 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 2274 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
2274 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 2275 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
2275 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 2276 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
2276 2277
2277 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2278 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c ('k') | ppapi/proxy/video_decoder_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698