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

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: Moved constant to shared header, validate min_picture_size now in resource proxy as well as host co… 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 1952 matching lines...) Expand 10 before | Expand all | Expand 10 after
1963 uint32_t /* desired_method_mask */) 1963 uint32_t /* desired_method_mask */)
1964 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_OutputProtection_EnableProtectionReply) 1964 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_OutputProtection_EnableProtectionReply)
1965 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_QueryStatus) 1965 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_QueryStatus)
1966 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_OutputProtection_QueryStatusReply, 1966 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_OutputProtection_QueryStatusReply,
1967 uint32_t /* link_mask */, 1967 uint32_t /* link_mask */,
1968 uint32_t /* protection_mask */) 1968 uint32_t /* protection_mask */)
1969 1969
1970 // VideoDecoder ------------------------------------------------------ 1970 // VideoDecoder ------------------------------------------------------
1971 1971
1972 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Create) 1972 IPC_MESSAGE_CONTROL0(PpapiHostMsg_VideoDecoder_Create)
1973 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Initialize, 1973 IPC_MESSAGE_CONTROL4(PpapiHostMsg_VideoDecoder_Initialize,
1974 ppapi::HostResource /* graphics_context */, 1974 ppapi::HostResource /* graphics_context */,
1975 PP_VideoProfile /* profile */, 1975 PP_VideoProfile /* profile */,
1976 PP_HardwareAcceleration /* acceleration */) 1976 PP_HardwareAcceleration /* acceleration */,
1977 uint32_t /* min_picture_count */)
1977 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_InitializeReply) 1978 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_VideoDecoder_InitializeReply)
1978 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDecoder_GetShm, 1979 IPC_MESSAGE_CONTROL2(PpapiHostMsg_VideoDecoder_GetShm,
1979 uint32_t /* shm_id */, 1980 uint32_t /* shm_id */,
1980 uint32_t /* shm_size */) 1981 uint32_t /* shm_size */)
1981 // On success, a shm handle is passed in the ReplyParams struct. 1982 // On success, a shm handle is passed in the ReplyParams struct.
1982 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_GetShmReply, 1983 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoDecoder_GetShmReply,
1983 uint32_t /* shm_size */) 1984 uint32_t /* shm_size */)
1984 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Decode, 1985 IPC_MESSAGE_CONTROL3(PpapiHostMsg_VideoDecoder_Decode,
1985 uint32_t /* shm_id */, 1986 uint32_t /* shm_id */,
1986 uint32_t /* size */, 1987 uint32_t /* size */,
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
2332 std::vector<ppapi::HostResource> /* buffers */, 2333 std::vector<ppapi::HostResource> /* buffers */,
2333 uint32_t /* buffer_size */) 2334 uint32_t /* buffer_size */)
2334 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2335 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2335 uint32_t /* status */) 2336 uint32_t /* status */)
2336 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2337 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2337 uint32_t /* error */) 2338 uint32_t /* error */)
2338 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2339 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2339 uint32_t /* buffer */) 2340 uint32_t /* buffer */)
2340 2341
2341 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2342 #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_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698