| Index: content/browser/renderer_host/media/media_stream_dispatcher_host.cc
|
| diff --git a/content/browser/renderer_host/media/media_stream_dispatcher_host.cc b/content/browser/renderer_host/media/media_stream_dispatcher_host.cc
|
| index 56559a6f68c6fe3e4f0cae0238cf17566ff43fac..0e9ff10bfae8d446f0610b5eb64272dee3bb9457 100644
|
| --- a/content/browser/renderer_host/media/media_stream_dispatcher_host.cc
|
| +++ b/content/browser/renderer_host/media/media_stream_dispatcher_host.cc
|
| @@ -195,12 +195,7 @@ void MediaStreamDispatcherHost::OnGenerateStream(
|
| << render_view_id << ", "
|
| << page_request_id << ", [ "
|
| << (components.audio ? "audio " : "")
|
| - << ((components.video_option &
|
| - StreamOptions::kFacingUser) ?
|
| - "video_facing_user " : "")
|
| - << ((components.video_option &
|
| - StreamOptions::kFacingEnvironment) ?
|
| - "video_facing_environment " : "")
|
| + << (components.video ? "video " : "")
|
| << "], "
|
| << security_origin << ")";
|
|
|
|
|