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

Side by Side Diff: content/common/media/media_stream_messages.h

Issue 1873293002: Report if video capturing meets output protection requirement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed oshima's comments. Created 4 years, 7 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 // IPC messages for the media streaming. 5 // IPC messages for the media streaming.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 std::string /*label*/) 145 std::string /*label*/)
146 146
147 // Subscribe to notifications about changes in the set of media devices. 147 // Subscribe to notifications about changes in the set of media devices.
148 IPC_MESSAGE_CONTROL2(MediaStreamHostMsg_SubscribeToDeviceChangeNotifications, 148 IPC_MESSAGE_CONTROL2(MediaStreamHostMsg_SubscribeToDeviceChangeNotifications,
149 int /* render frame id */, 149 int /* render frame id */,
150 url::Origin /* security origin */) 150 url::Origin /* security origin */)
151 151
152 // Cancel notifications about changes in the set of media devices. 152 // Cancel notifications about changes in the set of media devices.
153 IPC_MESSAGE_CONTROL1(MediaStreamHostMsg_CancelDeviceChangeNotifications, 153 IPC_MESSAGE_CONTROL1(MediaStreamHostMsg_CancelDeviceChangeNotifications,
154 int /* render frame id */) 154 int /* render frame id */)
155
156 // Tell the browser process if the video capture is secure (i.e., all
157 // connected video sinks meet the requirement of output protection.).
158 IPC_MESSAGE_CONTROL3(MediaStreamHostMsg_SetCapturingLinkSecured,
159 int, /* session_id */
160 content::MediaStreamType, /* type */
161 bool /* is_secure */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698