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

Unified Diff: ui/login/account_picker/user_pod_row.js

Issue 1150173003: Fix some JS style nits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 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
« no previous file with comments | « ui/accessibility/extensions/caretbrowsing/traverse_util.js ('k') | ui/login/display_manager.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/login/account_picker/user_pod_row.js
diff --git a/ui/login/account_picker/user_pod_row.js b/ui/login/account_picker/user_pod_row.js
index a8b257f8afbc6b58187e711f8572206aa597f220..d4fd53a524e08184975591c09a676f8f5b18ab97 100644
--- a/ui/login/account_picker/user_pod_row.js
+++ b/ui/login/account_picker/user_pod_row.js
@@ -9,7 +9,7 @@
cr.define('login', function() {
/**
* Number of displayed columns depending on user pod count.
- * @type {Array.<number>}
+ * @type {Array<number>}
* @const
*/
var COLUMNS = [0, 1, 2, 3, 4, 5, 4, 4, 4, 5, 5, 6, 6, 5, 5, 6, 6, 6, 6];
@@ -17,7 +17,7 @@ cr.define('login', function() {
/**
* Mapping between number of columns in pod-row and margin between user pods
* for such layout.
- * @type {Array.<number>}
+ * @type {Array<number>}
* @const
*/
var MARGIN_BY_COLUMNS = [undefined, 40, 40, 40, 40, 40, 12];
@@ -25,7 +25,7 @@ cr.define('login', function() {
/**
* Mapping between number of columns in the desktop pod-row and margin
* between user pods for such layout.
- * @type {Array.<number>}
+ * @type {Array<number>}
* @const
*/
var DESKTOP_MARGIN_BY_COLUMNS = [undefined, 15, 15, 15, 15, 15, 15];
@@ -187,7 +187,7 @@ cr.define('login', function() {
* The supported user pod custom icons.
* {@code id} properties should be in sync with values set by C++ side.
* {@code class} properties are CSS classes used to set the icons' background.
- * @const {Array.<{id: !string, class: !string}>}
+ * @const {Array<{id: !string, class: !string}>}
*/
UserPodCustomIcon.ICONS = [
{id: 'locked', class: 'custom-icon-locked'},
« no previous file with comments | « ui/accessibility/extensions/caretbrowsing/traverse_util.js ('k') | ui/login/display_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698