| Index: content/browser/resources/media/ssrc_info_manager.js
|
| diff --git a/content/browser/resources/media/ssrc_info_manager.js b/content/browser/resources/media/ssrc_info_manager.js
|
| index bb99f81d7e9aac864720edfd5910372f85c24b39..f588e1ec10c2626f18952572a0bf0e9c754e4b75 100644
|
| --- a/content/browser/resources/media/ssrc_info_manager.js
|
| +++ b/content/browser/resources/media/ssrc_info_manager.js
|
| @@ -48,7 +48,7 @@ var SsrcInfoManager = (function() {
|
| function SsrcInfoManager() {
|
| /**
|
| * Map from ssrc id to an object containing all the stream properties.
|
| - * @type {!Object.<string, !Object.<string>>}
|
| + * @type {!Object<string, !Object<string>>}
|
| * @private
|
| */
|
| this.streamInfoContainer_ = {};
|
| @@ -133,7 +133,7 @@ var SsrcInfoManager = (function() {
|
|
|
| /**
|
| * @param {string} sdp The ssrc id.
|
| - * @return {!Object.<string>} The object containing the ssrc infomation.
|
| + * @return {!Object<string>} The object containing the ssrc infomation.
|
| */
|
| getStreamInfo: function(ssrc) {
|
| return this.streamInfoContainer_[ssrc];
|
|
|