| 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 53d5b4cef872f51125164030dc741871128ac450..e5d2c8c1a143210e4d3f057b04d8563c7c07511f 100644
|
| --- a/chrome/browser/resources/media_router/media_router_data.js
|
| +++ b/chrome/browser/resources/media_router/media_router_data.js
|
| @@ -137,9 +137,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, false);
|
| + var AUTO_CAST_MODE = new CastMode(
|
| + media_router.CastModeType.AUTO, loadTimeData.getString('autoCastMode'),
|
| + null, false);
|
|
|
| /**
|
| * @param {number} id The ID of this issue.
|
| @@ -154,9 +154,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;
|
|
|
| @@ -196,8 +196,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;
|
|
|
| @@ -290,8 +290,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;
|
|
|
|
|