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

Unified Diff: content/browser/resources/media/webrtc_internals.js

Issue 917093003: Shorten Closure template notation from Array.<*> to Array<*>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cvox Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/resources/media/stats_table.js ('k') | extensions/renderer/resources/data_receiver.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/resources/media/webrtc_internals.js
diff --git a/content/browser/resources/media/webrtc_internals.js b/content/browser/resources/media/webrtc_internals.js
index 3a1f9cd25c19e86fd4e746faf192bc12195ddcb1..164ef29630490370b14ed0680c75b4a2e7d28410 100644
--- a/content/browser/resources/media/webrtc_internals.js
+++ b/content/browser/resources/media/webrtc_internals.js
@@ -117,7 +117,7 @@ function requestStats() {
/**
* A helper function for getting a peer connection element id.
*
- * @param {!Object.<string, number>} data The object containing the pid and lid
+ * @param {!Object<string, number>} data The object containing the pid and lid
* of the peer connection.
* @return {string} The peer connection element id.
*/
@@ -174,7 +174,7 @@ function addPeerConnectionUpdate(peerConnectionElement, update) {
/**
* Removes all information about a peer connection.
*
- * @param {!Object.<string, number>} data The object containing the pid and lid
+ * @param {!Object<string, number>} data The object containing the pid and lid
* of a peer connection.
*/
function removePeerConnection(data) {
@@ -227,7 +227,7 @@ function updatePeerConnection(data) {
/**
* Adds the information of all peer connections created so far.
*
- * @param {Array.<!Object>} data An array of the information of all peer
+ * @param {Array<!Object>} data An array of the information of all peer
* connections. Each array item contains pid, lid, url, rtcConfiguration,
* constraints, and an array of updates as the log.
*/
« no previous file with comments | « content/browser/resources/media/stats_table.js ('k') | extensions/renderer/resources/data_receiver.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698