From dac32bceaa8e37edcf09b1ffc8d3bc279250696e Mon Sep 17 00:00:00 2001 From: MDN Date: Fri, 18 Jun 2021 00:34:28 +0000 Subject: [CRON] sync translated content --- .../web/api/rtcsessiondescriptioncallback/index.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 files/ja/orphaned/web/api/rtcsessiondescriptioncallback/index.html (limited to 'files/ja/orphaned') diff --git a/files/ja/orphaned/web/api/rtcsessiondescriptioncallback/index.html b/files/ja/orphaned/web/api/rtcsessiondescriptioncallback/index.html new file mode 100644 index 0000000000..df94aca744 --- /dev/null +++ b/files/ja/orphaned/web/api/rtcsessiondescriptioncallback/index.html @@ -0,0 +1,16 @@ +--- +title: RTCSessionDescriptionCallback +slug: orphaned/Web/API/RTCSessionDescriptionCallback +translation_of: Web/API/RTCSessionDescriptionCallback +original_slug: Web/API/RTCSessionDescriptionCallback +--- +

{{APIRef("WebRTC")}}{{SeeCompatTable}}RTCSessionDescriptionCallbackはオファーまたはアンサーの作成が要求された時に RTCPeerConnection オブジェクトによって実行されます。 

+ +

+ +
var pc = new RTCPeerConnection();
+var descriptionCallback = function(offer) {
+  pc.setLocalDescription(offer);
+}
+pc.createOffer(descriptionCallback);
+
-- cgit v1.2.3-54-g00ecf