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

Unified Diff: chrome/browser/resources/media_router/media_router_data.js

Issue 2176613003: [Media Router] Clean up issues related code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix tests Created 4 years 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
Index: chrome/browser/resources/media_router/media_router_data.js
diff --git a/chrome/browser/resources/media_router/media_router_data.js b/chrome/browser/resources/media_router/media_router_data.js
index 13df59819e7db7dfacc51d9a5dc683ffee61f6b2..2c034acff2a027730bc865db62d0f2dbc5fdf6fb 100644
--- a/chrome/browser/resources/media_router/media_router_data.js
+++ b/chrome/browser/resources/media_router/media_router_data.js
@@ -125,7 +125,7 @@ cr.define('media_router', function() {
loadTimeData.getString('autoCastMode'), null);
/**
- * @param {string} id The ID of this issue.
+ * @param {number} id The ID of this issue.
* @param {string} title The issue title.
* @param {string} message The issue message.
* @param {number} defaultActionType The type of default action.
@@ -140,7 +140,7 @@ cr.define('media_router', function() {
var Issue = function(id, title, message, defaultActionType,
secondaryActionType, routeId, isBlocking,
helpPageId) {
- /** @type {string} */
+ /** @type {number} */
this.id = id;
/** @type {string} */

Powered by Google App Engine
This is Rietveld 408576698