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

Unified Diff: ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js

Issue 2597013002: Run clang-format on ui/webui/resources (Closed)
Patch Set: remove cr_shared_menu.js Created 4 years 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: ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js
diff --git a/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js b/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js
index 9f6f9da4da03ac8703b002892ba6c3edb50f20f0..df8421e06cd761250d7ddc4012f8b5c4fedcdcea 100644
--- a/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js
+++ b/ui/webui/resources/cr_elements/cr_profile_avatar_selector/cr_profile_avatar_selector.js
@@ -18,19 +18,13 @@ Polymer({
* The list of profile avatar URLs and labels.
* @type {!Array<!AvatarIcon>}
*/
- avatars: {
- type: Array,
- value: function() { return []; }
- },
+ avatars: {type: Array, value: function() { return []; }},
/**
* The currently selected profile avatar URL. May be a data URI.
* @type {string}
*/
- selectedAvatarUrl: {
- type: String,
- notify: true
- },
+ selectedAvatarUrl: {type: String, notify: true},
ignoreModifiedKeyEvents: {
type: Boolean,
@@ -43,7 +37,5 @@ Polymer({
* @return {string} A CSS imageset for multiple scale factors.
* @private
*/
- getIconImageset_: function(iconUrl) {
- return cr.icon.getImage(iconUrl);
- },
+ getIconImageset_: function(iconUrl) { return cr.icon.getImage(iconUrl); },
});

Powered by Google App Engine
This is Rietveld 408576698