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

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

Issue 2014673002: [Media Router WebUI] Show issue's secondary action when 'dismiss'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: Created 4 years, 7 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
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 9f5e3f4438788203dc8ec1306309412ffa065185..d7bd5f79cecb7e1022abd0d23a58ab4a583c2494 100644
--- a/chrome/browser/resources/media_router/media_router_data.js
+++ b/chrome/browser/resources/media_router/media_router_data.js
@@ -127,7 +127,7 @@ cr.define('media_router', function() {
* @param {string} title The issue title.
* @param {string} message The issue message.
* @param {number} defaultActionType The type of default action.
- * @param {?number} secondaryActionType The type of optional action.
+ * @param {number|undefined} secondaryActionType The type of optional action.
* @param {?string} routeId The route ID to which this issue
* pertains. If not set, this is a global issue.
* @param {boolean} isBlocking True if this issue blocks other UI.
@@ -150,7 +150,7 @@ cr.define('media_router', function() {
/** @type {number} */
this.defaultActionType = defaultActionType;
- /** @type {?number} */
+ /** @type {number|undefined} */
this.secondaryActionType = secondaryActionType;
/** @type {?string} */

Powered by Google App Engine
This is Rietveld 408576698