diff --git a/webrtc/test/manual/README b/webrtc/test/manual/README deleted file mode 100644 index 0fc0b7530b..0000000000 --- a/webrtc/test/manual/README +++ /dev/null @@ -1,8 +0,0 @@ -================================================================ -WEBRTC MANUAL TESTS -================================================================ - -You will need to serve these files off some kind of web server. Currently, -GetUserMedia does not work when run off a file:// URL. - -Contact person: phoglund@webrtc.org \ No newline at end of file diff --git a/webrtc/test/manual/adapter.js b/webrtc/test/manual/adapter.js deleted file mode 100644 index b03d758b2f..0000000000 --- a/webrtc/test/manual/adapter.js +++ /dev/null @@ -1,51 +0,0 @@ -var RTCPeerConnection = null; -var getUserMedia = null; -var attachMediaStream = null; - -if (navigator.mozGetUserMedia) { - console.log("This appears to be Firefox"); - - // The RTCPeerConnection object. - RTCPeerConnection = mozRTCPeerConnection; - - // Get UserMedia (only difference is the prefix). - // Code from Adam Barth. - getUserMedia = navigator.mozGetUserMedia.bind(navigator); - - // Attach a media stream to an element. - attachMediaStream = function(element, stream) { - console.log("Attaching media stream"); - element.mozSrcObject = stream; - element.play(); - }; -} else if (navigator.webkitGetUserMedia) { - console.log("This appears to be Chrome"); - - // The RTCPeerConnection object. - RTCPeerConnection = webkitRTCPeerConnection; - - // Get UserMedia (only difference is the prefix). - // Code from Adam Barth. - getUserMedia = navigator.webkitGetUserMedia.bind(navigator); - - // Attach a media stream to an element. - attachMediaStream = function(element, stream) { - element.src = webkitURL.createObjectURL(stream); - }; - - // The representation of tracks in a stream is changed in M26. - // Unify them for earlier Chrome versions in the coexisting period. - if (!webkitMediaStream.prototype.getVideoTracks) { - webkitMediaStream.prototype.getVideoTracks = function() { - return this.videoTracks; - } - } - - if (!webkitMediaStream.prototype.getAudioTracks) { - webkitMediaStream.prototype.getAudioTracks = function() { - return this.audioTracks; - } - } -} else { - console.log("Browser does not appear to be WebRTC-capable"); -} diff --git a/webrtc/test/manual/audio-and-video.html b/webrtc/test/manual/audio-and-video.html deleted file mode 100644 index c4e1d84c92..0000000000 --- a/webrtc/test/manual/audio-and-video.html +++ /dev/null @@ -1,47 +0,0 @@ - - - - - Single Local Preview (Video and Audio) - - - - - - - - - - - - - - -
Local Preview
- - diff --git a/webrtc/test/manual/iframe-apprtc.html b/webrtc/test/manual/iframe-apprtc.html deleted file mode 100644 index 31e0db10c0..0000000000 --- a/webrtc/test/manual/iframe-apprtc.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - AppRTC web app in an IFRAME - - - - AppRTC in an <iframe> element:
- - - diff --git a/webrtc/test/manual/iframe-video.html b/webrtc/test/manual/iframe-video.html deleted file mode 100644 index 3cb532b091..0000000000 --- a/webrtc/test/manual/iframe-video.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - IFRAME Single Local Preview (Video Only) - - - - - - \ No newline at end of file diff --git a/webrtc/test/manual/multiple-audio.html b/webrtc/test/manual/multiple-audio.html deleted file mode 100644 index 80e4b646c6..0000000000 --- a/webrtc/test/manual/multiple-audio.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - Multiple Local Preview (Audio Only) - - - - - - - - - - - - - - - - - - - - - - -
Sound test
- - diff --git a/webrtc/test/manual/multiple-video.html b/webrtc/test/manual/multiple-video.html deleted file mode 100644 index fd82bf82cf..0000000000 --- a/webrtc/test/manual/multiple-video.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Multiple Local Preview (Video Only) - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Local Preview
- - diff --git a/webrtc/test/manual/single-audio.html b/webrtc/test/manual/single-audio.html deleted file mode 100644 index b5d1ed464a..0000000000 --- a/webrtc/test/manual/single-audio.html +++ /dev/null @@ -1,44 +0,0 @@ - - - - - Single Local Preview (Audio Only) - - - - - - - - - - - - - -
Sound test
- - diff --git a/webrtc/test/manual/single-video.html b/webrtc/test/manual/single-video.html deleted file mode 100644 index 7a88dcf97d..0000000000 --- a/webrtc/test/manual/single-video.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - Single Local Preview (Video Only) - - - - - - - - - - - - - -
Local Preview
- - diff --git a/webrtc/test/manual/two-video-devices.html b/webrtc/test/manual/two-video-devices.html deleted file mode 100644 index 44c0947bdc..0000000000 --- a/webrtc/test/manual/two-video-devices.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - Single Local Preview (Video Only) - - - - - - - - - - - - - - -
Local Preview
- - \ No newline at end of file