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

Unified Diff: chrome/browser/resources/chromeos/login/navigation_bar.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/login/navigation_bar.js
diff --git a/chrome/browser/resources/chromeos/login/navigation_bar.js b/chrome/browser/resources/chromeos/login/navigation_bar.js
index c428afc7100782eb4321a335126292ef7511a342..84cbb024c5eed5c5266c4ff569920f599b0a17ad 100644
--- a/chrome/browser/resources/chromeos/login/navigation_bar.js
+++ b/chrome/browser/resources/chromeos/login/navigation_bar.js
@@ -6,25 +6,19 @@ Polymer({
is: 'navigation-bar',
properties: {
- backVisible: {
- type: Boolean,
- value: false
- },
- closeVisible: {
- type: Boolean,
- value: false
- },
- refreshVisible: {
- type: Boolean,
- value: false
- },
- disabled: {
- type: Boolean,
- value: false
- }
+ backVisible: {type: Boolean, value: false},
+ closeVisible: {type: Boolean, value: false},
+ refreshVisible: {type: Boolean, value: false},
+ disabled: {type: Boolean, value: false}
},
- onBack_: function() { this.fire('back'); },
- onClose_: function() { this.fire('close'); },
- onRefresh_: function() { this.fire('refresh'); }
+ onBack_: function() {
+ this.fire('back');
+ },
+ onClose_: function() {
+ this.fire('close');
+ },
+ onRefresh_: function() {
+ this.fire('refresh');
+ }
});

Powered by Google App Engine
This is Rietveld 408576698