Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(741)

Side by Side Diff: content/browser/resources/media/webrtc_internals.js

Issue 129533003: Remove the RTP recording related code from webrtc-internals. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/browser/resources/media/dump_creator.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « content/browser/resources/media/dump_creator.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698