| 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 2c034acff2a027730bc865db62d0f2dbc5fdf6fb..10ae25ae5b8f14fc2305aa7679525540d7bf6b33 100644
|
| --- a/chrome/browser/resources/media_router/media_router_data.js
|
| +++ b/chrome/browser/resources/media_router/media_router_data.js
|
| @@ -121,8 +121,9 @@ cr.define('media_router', function() {
|
| * Placeholder object for AUTO cast mode. See comment in CastModeType.
|
| * @const {!media_router.CastMode}
|
| */
|
| - var AUTO_CAST_MODE = new CastMode(media_router.CastModeType.AUTO,
|
| - loadTimeData.getString('autoCastMode'), null);
|
| + var AUTO_CAST_MODE = new CastMode(
|
| + media_router.CastModeType.AUTO, loadTimeData.getString('autoCastMode'),
|
| + null);
|
|
|
| /**
|
| * @param {number} id The ID of this issue.
|
| @@ -137,9 +138,9 @@ cr.define('media_router', function() {
|
| * @constructor
|
| * @struct
|
| */
|
| - var Issue = function(id, title, message, defaultActionType,
|
| - secondaryActionType, routeId, isBlocking,
|
| - helpPageId) {
|
| + var Issue = function(
|
| + id, title, message, defaultActionType, secondaryActionType, routeId,
|
| + isBlocking, helpPageId) {
|
| /** @type {number} */
|
| this.id = id;
|
|
|
| @@ -179,8 +180,8 @@ cr.define('media_router', function() {
|
| * @constructor
|
| * @struct
|
| */
|
| - var Route = function(id, sinkId, description, tabId, isLocal, canJoin,
|
| - customControllerPath) {
|
| + var Route = function(
|
| + id, sinkId, description, tabId, isLocal, canJoin, customControllerPath) {
|
| /** @type {string} */
|
| this.id = id;
|
|
|
| @@ -218,8 +219,8 @@ cr.define('media_router', function() {
|
| * @constructor
|
| * @struct
|
| */
|
| - var Sink = function(id, name, description, domain, iconType, status,
|
| - castModes) {
|
| + var Sink = function(
|
| + id, name, description, domain, iconType, status, castModes) {
|
| /** @type {string} */
|
| this.id = id;
|
|
|
|
|