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

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

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 years, 6 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 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;

Powered by Google App Engine
This is Rietveld 408576698