| 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 67b704457df0ac04f962d409b0a66bb6a69cf520..9137e069a48344528c296a5f1780d07f10b58d18 100644
|
| --- a/content/browser/renderer_host/media/media_stream_dispatcher_host.cc
|
| +++ b/content/browser/renderer_host/media/media_stream_dispatcher_host.cc
|
| @@ -80,12 +80,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 << ")";
|
|
|
|
|