diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-03-08 10:28:10 +0100 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-03-20 13:40:30 +0000 |
commit | e733310db58160074f574c429d48f8308c0afe17 (patch) | |
tree | f8aef4b7e62a69928dbcf880620eece20f98c6df /chromium/content/common/media/media_stream_messages.h | |
parent | 2f583e4aec1ae3a86fa047829c96b310dc12ecdf (diff) | |
download | qtwebengine-chromium-e733310db58160074f574c429d48f8308c0afe17.tar.gz |
BASELINE: Update Chromium to 56.0.2924.122
Change-Id: I4e04de8f47e47e501c46ed934c76a431c6337ced
Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/content/common/media/media_stream_messages.h')
-rw-r--r-- | chromium/content/common/media/media_stream_messages.h | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/chromium/content/common/media/media_stream_messages.h b/chromium/content/common/media/media_stream_messages.h index 78c5e8c4ce8..bdcc42f0a59 100644 --- a/chromium/content/common/media/media_stream_messages.h +++ b/chromium/content/common/media/media_stream_messages.h @@ -37,13 +37,13 @@ IPC_STRUCT_TRAITS_BEGIN(content::StreamControls) IPC_STRUCT_TRAITS_MEMBER(audio) IPC_STRUCT_TRAITS_MEMBER(video) IPC_STRUCT_TRAITS_MEMBER(hotword_enabled) + IPC_STRUCT_TRAITS_MEMBER(disable_local_echo) IPC_STRUCT_TRAITS_END() IPC_STRUCT_TRAITS_BEGIN(content::StreamDeviceInfo) IPC_STRUCT_TRAITS_MEMBER(device.type) IPC_STRUCT_TRAITS_MEMBER(device.name) IPC_STRUCT_TRAITS_MEMBER(device.id) - IPC_STRUCT_TRAITS_MEMBER(device.group_id) IPC_STRUCT_TRAITS_MEMBER(device.video_facing) IPC_STRUCT_TRAITS_MEMBER(device.matched_output_device_id) IPC_STRUCT_TRAITS_MEMBER(device.input.sample_rate) @@ -96,9 +96,6 @@ IPC_MESSAGE_ROUTED3(MediaStreamMsg_DeviceOpened, IPC_MESSAGE_ROUTED1(MediaStreamMsg_DeviceOpenFailed, int /* request id */) -// The browser has detected a change in the set of media devices. -IPC_MESSAGE_ROUTED0(MediaStreamMsg_DevicesChanged) - // Messages sent from the renderer to the browser. // Request a new media stream. @@ -119,19 +116,6 @@ IPC_MESSAGE_CONTROL2(MediaStreamHostMsg_StopStreamDevice, int /* render frame id */, std::string /*device_id*/) -// Request to enumerate devices. -// Used by Pepper and WebRTC. -IPC_MESSAGE_CONTROL4(MediaStreamHostMsg_EnumerateDevices, - int /* render frame id */, - int /* request id */, - content::MediaStreamType /* type */, - url::Origin /* security origin */) - -// Request to stop enumerating devices. -IPC_MESSAGE_CONTROL2(MediaStreamHostMsg_CancelEnumerateDevices, - int /* render frame id */, - int /* request id */) - // Request to open the device. IPC_MESSAGE_CONTROL5(MediaStreamHostMsg_OpenDevice, int /* render frame id */, @@ -145,15 +129,6 @@ IPC_MESSAGE_CONTROL2(MediaStreamHostMsg_CloseDevice, int /* render frame id */, std::string /*label*/) -// Subscribe to notifications about changes in the set of media devices. -IPC_MESSAGE_CONTROL2(MediaStreamHostMsg_SubscribeToDeviceChangeNotifications, - int /* render frame id */, - url::Origin /* security origin */) - -// Cancel notifications about changes in the set of media devices. -IPC_MESSAGE_CONTROL1(MediaStreamHostMsg_CancelDeviceChangeNotifications, - int /* render frame id */) - // Tell the browser process if the video capture is secure (i.e., all // connected video sinks meet the requirement of output protection.). // Note: the browser process only trusts the |is_sucure| value in this IPC |