From 4530aa31579d8e97900ced84e8963e9859a99e47 Mon Sep 17 00:00:00 2001 From: "henrikg@webrtc.org" Date: Mon, 19 Mar 2012 09:55:45 +0000 Subject: [PATCH] Updates html test file to webkitDeprecatedPeerConnection. The name (in WebKit) has been changed to add "Deprecated", in preparation of launching JSEP PeerConnection. This change is in Chrome Canary now. No functionality has changed. BUG=371 Review URL: https://webrtc-codereview.appspot.com/449012 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1911 4adac7df-926f-26a2-2b94-8c16560cd09d --- test/sanity_check/www/html/webrtc_test.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sanity_check/www/html/webrtc_test.html b/test/sanity_check/www/html/webrtc_test.html index e8b0c60c67..09ce8c64c7 100644 --- a/test/sanity_check/www/html/webrtc_test.html +++ b/test/sanity_check/www/html/webrtc_test.html @@ -238,7 +238,7 @@ function createPeerConnection() { } trace("Creating PeerConnection object"); try { - pc = new webkitPeerConnection("STUN stun.l.google.com:19302", + pc = new webkitDeprecatedPeerConnection("STUN stun.l.google.com:19302", onSignalingMessage); pc.onaddstream = onAddStream; pc.onremovestream = onRemoveStream;