| Index: chrome/browser/resources/media_router/elements/media_router_container/media_router_container.js
|
| diff --git a/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.js b/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.js
|
| index c84092d121413645d27f610fcf75b9681bab67d9..ee501d006919e905368ff9c65d32349032b52e68 100644
|
| --- a/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.js
|
| +++ b/chrome/browser/resources/media_router/elements/media_router_container/media_router_container.js
|
| @@ -184,11 +184,11 @@ Polymer({
|
| /**
|
| * The header text tooltip. This would be descriptive of the
|
| * source origin, whether a host name, tab URL, etc.
|
| - * @type {?string}
|
| + * @type {string}
|
| */
|
| headerTextTooltip: {
|
| type: String,
|
| - value: null,
|
| + value: '',
|
| },
|
|
|
| /**
|
| @@ -1574,7 +1574,7 @@ Polymer({
|
|
|
| this.shownCastModeValue_ = castMode.type;
|
| this.headerText = castMode.description;
|
| - this.headerTextTooltip = castMode.host;
|
| + this.headerTextTooltip = castMode.host || '';
|
| if (castMode.type == media_router.CastModeType.AUTO)
|
| this.userHasSelectedCastMode_ = false;
|
| },
|
|
|