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

Unified Diff: chrome/browser/resources/settings/internet_page/tether_connection_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/internet_page/tether_connection_dialog.js
diff --git a/chrome/browser/resources/settings/internet_page/tether_connection_dialog.js b/chrome/browser/resources/settings/internet_page/tether_connection_dialog.js
index a5e2df22125e8e9c9b33f7dfafd393880363ff86..6bae7d7d2b9a4eb032e46cdf66a4b0a7023d27dc 100644
--- a/chrome/browser/resources/settings/internet_page/tether_connection_dialog.js
+++ b/chrome/browser/resources/settings/internet_page/tether_connection_dialog.js
@@ -103,8 +103,9 @@ Polymer({
* @private
*/
getBatteryPercentageString_: function(networkProperties) {
- return this.i18n('tetherConnectionBatteryPercentage',
- this.getBatteryPercentageAsString_(networkProperties));
+ return this.i18n(
+ 'tetherConnectionBatteryPercentage',
+ this.getBatteryPercentageAsString_(networkProperties));
},
/**
@@ -113,8 +114,8 @@ Polymer({
* @private
*/
getExplanation_: function(networkProperties) {
- return this.i18n('tetherConnectionExplanation',
- CrOnc.getNetworkName(networkProperties));
+ return this.i18n(
+ 'tetherConnectionExplanation', CrOnc.getNetworkName(networkProperties));
},
/**
@@ -123,8 +124,9 @@ Polymer({
* @private
*/
getDescriptionTitle_: function(networkProperties) {
- return this.i18n('tetherConnectionDescriptionTitle',
- CrOnc.getNetworkName(networkProperties));
+ return this.i18n(
+ 'tetherConnectionDescriptionTitle',
+ CrOnc.getNetworkName(networkProperties));
},
/**
@@ -133,7 +135,8 @@ Polymer({
* @private
*/
getBatteryDescription_: function(networkProperties) {
- return this.i18n('tetherConnectionDescriptionBattery',
- this.getBatteryPercentageAsString_(networkProperties));
+ return this.i18n(
+ 'tetherConnectionDescriptionBattery',
+ this.getBatteryPercentageAsString_(networkProperties));
},
});

Powered by Google App Engine
This is Rietveld 408576698