blob: df0dec864e6656a3be5596eb8c22af8fc70e8f46 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/browser/media_stream_request.h"
namespace content {
MediaStreamRequest::MediaStreamRequest(
int render_process_id,
int render_frame_id,
int page_request_id,
const GURL& security_origin,
bool user_gesture,
blink::MediaStreamRequestType request_type,
const std::string& requested_audio_device_id,
const std::string& requested_video_device_id,
blink::mojom::MediaStreamType audio_type,
blink::mojom::MediaStreamType video_type,
bool disable_local_echo,
bool request_pan_tilt_zoom_permission)
: render_process_id(render_process_id),
render_frame_id(render_frame_id),
page_request_id(page_request_id),
security_origin(security_origin),
user_gesture(user_gesture),
request_type(request_type),
requested_audio_device_id(requested_audio_device_id),
requested_video_device_id(requested_video_device_id),
audio_type(audio_type),
video_type(video_type),
disable_local_echo(disable_local_echo),
request_pan_tilt_zoom_permission(request_pan_tilt_zoom_permission) {
DCHECK(blink::IsAudioInputMediaType(audio_type) ||
audio_type == blink::mojom::MediaStreamType::NO_SERVICE);
DCHECK(blink::IsVideoInputMediaType(video_type) ||
video_type == blink::mojom::MediaStreamType::NO_SERVICE);
}
MediaStreamRequest::MediaStreamRequest(const MediaStreamRequest& other) =
default;
MediaStreamRequest::~MediaStreamRequest() = default;
} // namespace content