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

Unified Diff: chrome/browser/resources/media_router/elements/issue_banner/issue_banner.js

Issue 1933013002: [Media Router WebUI] Remove unnecessary default property values. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 8 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 | « no previous file | chrome/browser/resources/media_router/elements/media_router_container/media_router_container.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/media_router/elements/issue_banner/issue_banner.js
diff --git a/chrome/browser/resources/media_router/elements/issue_banner/issue_banner.js b/chrome/browser/resources/media_router/elements/issue_banner/issue_banner.js
index 855931bac31e5d5c2571e9a2b4279fb209ab1006..324360fb837f2ee3cb69a61711cf8f5da7a26a09 100644
--- a/chrome/browser/resources/media_router/elements/issue_banner/issue_banner.js
+++ b/chrome/browser/resources/media_router/elements/issue_banner/issue_banner.js
@@ -25,30 +25,27 @@ Polymer({
/**
* The text shown in the default action button.
- * @private {string}
+ * @private {string|undefined}
*/
defaultActionButtonText_: {
type: String,
- value: '',
},
/**
* The issue to show.
- * @type {?media_router.Issue}
+ * @type {?media_router.Issue|undefined}
*/
issue: {
type: Object,
- value: null,
observer: 'updateActionButtonText_',
},
/**
* The text shown in the secondary action button.
- * @private {string}
+ * @private {string|undefined}
*/
secondaryActionButtonText_: {
type: String,
- value: '',
},
},
« no previous file with comments | « no previous file | chrome/browser/resources/media_router/elements/media_router_container/media_router_container.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698