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

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

Issue 1207043002: Introduce a client minimum picture pool size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months 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 1957 matching lines...) Expand 10 before | Expand all | Expand 10 after
1968 uint32_t /* desired_method_mask */) 1968 uint32_t /* desired_method_mask */)
1969 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_OutputProtection_EnableProtectionReply) 1969 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_OutputProtection_EnableProtectionReply)
1970 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_QueryStatus) 1970 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_QueryStatus)
1971 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_OutputProtection_QueryStatusReply, 1971 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_OutputProtection_QueryStatusReply,
1972 uint32_t /* link_mask */, 1972 uint32_t /* link_mask */,
1973 uint32_t /* protection_mask */) 1973 uint32_t /* protection_mask */)
1974 1974
1975 // VideoDecoder ------------------------------------------------------ 1975 // VideoDecoder ------------------------------------------------------
1976 1976
1977 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Create) 1977 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Create)
1978 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Initialize, 1978 IPC_MESSAGE_CONTROL4(PpapiHostMsg_VideoDecoder_Initialize,
1979 ppapi::HostResource /* graphics_context */, 1979 ppapi::HostResource /* graphics_context */,
1980 PP_VideoProfile /* profile */, 1980 PP_VideoProfile /* profile */,
1981 PP_HardwareAcceleration /* acceleration */) 1981 PP_HardwareAcceleration /* acceleration */,
1982 uint32_t /*min_picture_count */)
bbudge 2015/08/12 17:47:09 nit space after /*
lpique 2015/08/12 22:48:54 Done.
1982 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_InitializeReply) 1983 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_InitializeReply)
1983 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDecoder_GetShm, 1984 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDecoder_GetShm,
1984 uint32_t /* shm_id */, 1985 uint32_t /* shm_id */,
1985 uint32_t /* shm_size */) 1986 uint32_t /* shm_size */)
1986 // On success, a shm handle is passed in the ReplyParams struct. 1987 // On success, a shm handle is passed in the ReplyParams struct.
1987 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_GetShmReply, 1988 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_GetShmReply,
1988 uint32_t /* shm_size */) 1989 uint32_t /* shm_size */)
1989 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Decode, 1990 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Decode,
1990 uint32_t /* shm_id */, 1991 uint32_t /* shm_id */,
1991 uint32_t /* size */, 1992 uint32_t /* size */,
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
2337 std::vector<ppapi::HostResource> /* buffers */, 2338 std::vector<ppapi::HostResource> /* buffers */,
2338 uint32_t /* buffer_size */) 2339 uint32_t /* buffer_size */)
2339 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2340 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2340 uint32_t /* status */) 2341 uint32_t /* status */)
2341 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2342 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2342 uint32_t /* error */) 2343 uint32_t /* error */)
2343 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2344 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2344 uint32_t /* buffer */) 2345 uint32_t /* buffer */)
2345 2346
2346 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2347 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698