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

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

Issue 24039002: Pepper API implementation for output protection. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: use cached_outputs_ in output_configurator Created 7 years, 2 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 <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 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 1706
1707 // Unsolicited reply message to notify that the connection is closed without 1707 // Unsolicited reply message to notify that the connection is closed without
1708 // any WebSocket_Close request. Server initiated closing handshake or 1708 // any WebSocket_Close request. Server initiated closing handshake or
1709 // unexpected network errors will invoke this message. 1709 // unexpected network errors will invoke this message.
1710 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_WebSocket_ClosedReply, 1710 IPC_MESSAGE_CONTROL4(PpapiPluginMsg_WebSocket_ClosedReply,
1711 uint64_t /* buffered_amount */, 1711 uint64_t /* buffered_amount */,
1712 bool /* was_clean */, 1712 bool /* was_clean */,
1713 uint16_t /* code */, 1713 uint16_t /* code */,
1714 std::string /* reason */) 1714 std::string /* reason */)
1715 1715
1716 // OutputProtection -----------------------------------------------------------
1717
1718 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_Create)
1719 IPC_MESSAGE_CONTROL1(PpapiHostMsg_OutputProtection_EnableProtection,
1720 uint32_t /* desired_method_mask */)
1721 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_OutputProtection_EnableProtectionReply)
1722 IPC_MESSAGE_CONTROL0(PpapiHostMsg_OutputProtection_QueryStatus)
1723 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_OutputProtection_QueryStatusReply,
1724 uint32_t /* link_mask */,
1725 uint32_t /* protection_mask */)
1726
1716 #if !defined(OS_NACL) && !defined(NACL_WIN64) 1727 #if !defined(OS_NACL) && !defined(NACL_WIN64)
1717 1728
1718 // Audio input. 1729 // Audio input.
1719 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioInput_Create) 1730 IPC_MESSAGE_CONTROL0(PpapiHostMsg_AudioInput_Create)
1720 IPC_MESSAGE_CONTROL3(PpapiHostMsg_AudioInput_Open, 1731 IPC_MESSAGE_CONTROL3(PpapiHostMsg_AudioInput_Open,
1721 std::string /* device_id */, 1732 std::string /* device_id */,
1722 PP_AudioSampleRate /* sample_rate */, 1733 PP_AudioSampleRate /* sample_rate */,
1723 uint32_t /* sample_frame_count */) 1734 uint32_t /* sample_frame_count */)
1724 // Reply to an Open call. This supplies a socket handle and a shared memory 1735 // Reply to an Open call. This supplies a socket handle and a shared memory
1725 // handle. Both handles are passed in the ReplyParams struct. 1736 // handle. Both handles are passed in the ReplyParams struct.
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
1963 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 1974 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
1964 PP_TalkPermission /* permission */) 1975 PP_TalkPermission /* permission */)
1965 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 1976 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
1966 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 1977 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
1967 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 1978 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
1968 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 1979 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
1969 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 1980 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
1970 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 1981 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
1971 1982
1972 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1983 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698