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

Unified Diff: chrome/browser/resources/settings/about_page/update_warning_dialog.js

Issue 2946563002: Run clang-format on .js files in c/b/r/settings (Closed)
Patch Set: dschuyler@ review 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/settings/about_page/update_warning_dialog.js
diff --git a/chrome/browser/resources/settings/about_page/update_warning_dialog.js b/chrome/browser/resources/settings/about_page/update_warning_dialog.js
index d938891935132b85b0f33deacc4136046bdfda51..4e62fc889008230aa923bc3f90febed0049b47e9 100644
--- a/chrome/browser/resources/settings/about_page/update_warning_dialog.js
+++ b/chrome/browser/resources/settings/about_page/update_warning_dialog.js
@@ -40,16 +40,16 @@ Polymer({
/** @private */
onContinueTap_: function() {
- this.browserProxy_.requestUpdateOverCellular(this.updateInfo.version,
- this.updateInfo.size);
+ this.browserProxy_.requestUpdateOverCellular(
+ this.updateInfo.version, this.updateInfo.size);
this.$.dialog.close();
},
/** @private */
updateInfoChanged_: function() {
- this.$$("#update-warning-message").innerHTML =
- this.i18n("aboutUpdateWarningMessage",
- // Convert bytes to megabytes
- Math.floor(Number(this.updateInfo.size) / (1024 * 1024)));
+ this.$$('#update-warning-message').innerHTML = this.i18n(
+ 'aboutUpdateWarningMessage',
+ // Convert bytes to megabytes
+ Math.floor(Number(this.updateInfo.size) / (1024 * 1024)));
},
});

Powered by Google App Engine
This is Rietveld 408576698