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

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

Issue 2617663002: WIP: run clang-format-js on lots of things (Closed)
Patch Set: merge Created 3 years, 11 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 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;

Powered by Google App Engine
This is Rietveld 408576698