diff options
Diffstat (limited to 'files/ja/web/api')
-rw-r--r-- | files/ja/web/api/rtcsessiondescriptioncallback/index.html | 15 |
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> |