aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-06-18 00:34:28 +0000
committerMDN <actions@users.noreply.github.com>2021-06-18 00:34:28 +0000
commitdac32bceaa8e37edcf09b1ffc8d3bc279250696e (patch)
tree0c51b0570b79adddb64a7108c4bd124f46c59a67 /files/ja/web/api
parentba94a1c97f12bb71cf59c2062d546e74d948cd4f (diff)
downloadtranslated-content-dac32bceaa8e37edcf09b1ffc8d3bc279250696e.tar.gz
translated-content-dac32bceaa8e37edcf09b1ffc8d3bc279250696e.tar.bz2
translated-content-dac32bceaa8e37edcf09b1ffc8d3bc279250696e.zip
[CRON] sync translated content
Diffstat (limited to 'files/ja/web/api')
-rw-r--r--files/ja/web/api/rtcsessiondescriptioncallback/index.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/files/ja/web/api/rtcsessiondescriptioncallback/index.html b/files/ja/web/api/rtcsessiondescriptioncallback/index.html
deleted file mode 100644
index e04b9e9bd2..0000000000
--- a/files/ja/web/api/rtcsessiondescriptioncallback/index.html
+++ /dev/null
@@ -1,15 +0,0 @@
----
-title: RTCSessionDescriptionCallback
-slug: Web/API/RTCSessionDescriptionCallback
-translation_of: Web/API/RTCSessionDescriptionCallback
----
-<p>{{APIRef("WebRTC")}}{{SeeCompatTable}}RTCSessionDescriptionCallbackはオファーまたはアンサーの作成が要求された時に <a href="/en-US/docs/">RTCPeerConnection</a> オブジェクトによって実行されます。 </p>
-
-<h3 id="例">例</h3>
-
-<pre>var pc = new RTCPeerConnection();
-var descriptionCallback = function(offer) {
- pc.setLocalDescription(offer);
-}
-pc.createOffer(descriptionCallback);
-</pre>