| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 var tabView = null; | 5 var tabView = null; |
| 6 var ssrcInfoManager = null; | 6 var ssrcInfoManager = null; |
| 7 var peerConnectionUpdateTable = null; | 7 var peerConnectionUpdateTable = null; |
| 8 var statsTable = null; | 8 var statsTable = null; |
| 9 var dumpCreator = null; | 9 var dumpCreator = null; |
| 10 /** A map from peer connection id to the PeerConnectionRecord. */ | 10 /** A map from peer connection id to the PeerConnectionRecord. */ |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 257 |
| 258 /** | 258 /** |
| 259 * Removes the getUserMedia requests from the specified |rid|. | 259 * Removes the getUserMedia requests from the specified |rid|. |
| 260 * | 260 * |
| 261 * @param {!Object} data The object containing rid {number}, the render id. | 261 * @param {!Object} data The object containing rid {number}, the render id. |
| 262 */ | 262 */ |
| 263 function removeGetUserMediaForRenderer(data) { | 263 function removeGetUserMediaForRenderer(data) { |
| 264 // TODO(jiayl): remove the getUserMedia info from the tabbed UI. | 264 // TODO(jiayl): remove the getUserMedia info from the tabbed UI. |
| 265 } | 265 } |
| 266 | 266 |
| 267 | |
| 268 /** | |
| 269 * Delegates to dumpCreator to update the recording status. | |
| 270 * @param {!Object.<string>} update Key-value pairs describing the status of the | |
| 271 * RTP recording. | |
| 272 */ | |
| 273 function updateDumpStatus(update) { | |
| 274 dumpCreator.onUpdate(update); | |
| 275 } | |
| 276 | |
| 277 /** | 267 /** |
| 278 * Set | 268 * Set |
| 279 */ | 269 */ |
| 280 function enableAecRecording() { | 270 function enableAecRecording() { |
| 281 dumpCreator.enableAecRecording(); | 271 dumpCreator.enableAecRecording(); |
| 282 } | 272 } |
| OLD | NEW |