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

Unified Diff: chrome/browser/resources/chromeos/emulator/audio_settings.js

Issue 2944703004: Run clang-format on .js files in c/b/r/chromeos (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/chromeos/emulator/audio_settings.js
diff --git a/chrome/browser/resources/chromeos/emulator/audio_settings.js b/chrome/browser/resources/chromeos/emulator/audio_settings.js
index d64a4cf62304e278e0bf05705232b3254ea31bce..08ef9c230bcd53ff07708f00ed72e2f3a7ca19c2 100644
--- a/chrome/browser/resources/chromeos/emulator/audio_settings.js
+++ b/chrome/browser/resources/chromeos/emulator/audio_settings.js
@@ -58,7 +58,9 @@ Polymer({
*/
currentEditableObject: {
type: Object,
- value: function() { return {}; }
+ value: function() {
+ return {};
+ }
},
/**
@@ -66,20 +68,35 @@ Polymer({
* This is initially set to -1 (i.e. no node selected) becuase no devices
* have been copied.
*/
- currentEditIndex: {type: Number, value: function() { return -1; }},
+ currentEditIndex: {
+ type: Number,
+ value: function() {
+ return -1;
+ }
+ },
/**
* A counter that will auto increment everytime a new node is added
* or copied and used to set a new id. This allows the |AudioNode.id|
* to allows be unique.
*/
- nodeCount: {type: Number, value: function() { return 0; }},
+ nodeCount: {
+ type: Number,
+ value: function() {
+ return 0;
+ }
+ },
/**
* A set of audio nodes.
* @type !Array<!AudioNode>
*/
- nodes: {type: Array, value: function() { return []; }},
+ nodes: {
+ type: Array,
+ value: function() {
+ return [];
+ }
+ },
/**
* A set of options for the possible audio node types.
« no previous file with comments | « chrome/browser/resources/chromeos/drive_internals.js ('k') | chrome/browser/resources/chromeos/emulator/battery_settings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698