mirror of https://github.com/electron/electron
33 lines
1.2 KiB
C++
33 lines
1.2 KiB
C++
// Copyright (c) 2021 Slack Technologies, LLC.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/common/gin_converters/media_converter.h"
|
|
|
|
#include "content/public/browser/media_stream_request.h"
|
|
#include "content/public/browser/render_frame_host.h"
|
|
#include "gin/data_object_builder.h"
|
|
#include "shell/common/gin_converters/frame_converter.h"
|
|
#include "shell/common/gin_converters/gurl_converter.h"
|
|
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom.h"
|
|
|
|
namespace gin {
|
|
|
|
v8::Local<v8::Value> Converter<content::MediaStreamRequest>::ToV8(
|
|
v8::Isolate* isolate,
|
|
const content::MediaStreamRequest& request) {
|
|
content::RenderFrameHost* rfh = content::RenderFrameHost::FromID(
|
|
request.render_process_id, request.render_frame_id);
|
|
return gin::DataObjectBuilder(isolate)
|
|
.Set("frame", rfh)
|
|
.Set("securityOrigin", request.security_origin)
|
|
.Set("userGesture", request.user_gesture)
|
|
.Set("videoRequested",
|
|
request.video_type != blink::mojom::MediaStreamType::NO_SERVICE)
|
|
.Set("audioRequested",
|
|
request.audio_type != blink::mojom::MediaStreamType::NO_SERVICE)
|
|
.Build();
|
|
}
|
|
|
|
} // namespace gin
|