| Index: chrome/test/data/webrtc/video_extraction.js
|
| diff --git a/chrome/test/data/webrtc/video_extraction.js b/chrome/test/data/webrtc/video_extraction.js
|
| index 393126d58c7608c247741d2400930ac090f8ed87..fbca37f5ad72c0e53b4c5c9f8608939ed02f6ee6 100644
|
| --- a/chrome/test/data/webrtc/video_extraction.js
|
| +++ b/chrome/test/data/webrtc/video_extraction.js
|
| @@ -8,7 +8,7 @@
|
| * The ID of the video tag from which frames are captured.
|
| * @private
|
| */
|
| -var gVideoId = 'remote_view';
|
| +var gVideoId = 'remote-view';
|
|
|
| /**
|
| * Counts the number of frames that have been captured. Used in timeout
|
| @@ -107,7 +107,7 @@ function startFrameCapture(width, height, canvas_height, frame_rate, duration){
|
| * @return {Canvas}
|
| */
|
| function capture(video, width, height) {
|
| - var canvas = document.getElementById('remote_canvas');
|
| + var canvas = document.getElementById('remote-canvas');
|
| var ctx = canvas.getContext('2d');
|
| ctx.drawImage(video, 0, 0, width, height);
|
| return canvas;
|
|
|