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

Unified Diff: chrome/browser/resources/chromeos/login/screen_wrong_hwid.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/screen_wrong_hwid.js
diff --git a/chrome/browser/resources/chromeos/login/screen_wrong_hwid.js b/chrome/browser/resources/chromeos/login/screen_wrong_hwid.js
index 202c494275b0e8510cb317cfc68b05b2ec4dadf6..cda4415e29717dfb2c7e57eb460e4a82afb04895 100644
--- a/chrome/browser/resources/chromeos/login/screen_wrong_hwid.js
+++ b/chrome/browser/resources/chromeos/login/screen_wrong_hwid.js
@@ -18,7 +18,7 @@ login.createScreen('WrongHWIDScreen', 'wrong-hwid', function() {
/**
* Updates state of login header so that necessary buttons are displayed.
- **/
+ */
onBeforeShow: function(data) {
$('login-header-bar').signinUIState = SIGNIN_UI_STATE.WRONG_HWID_WARNING;
},
@@ -27,14 +27,11 @@ login.createScreen('WrongHWIDScreen', 'wrong-hwid', function() {
* Updates localized content of the screen that is not updated via template.
*/
updateLocalizedContent: function() {
- $('wrong-hwid-message-content').innerHTML =
- '<p>' +
- loadTimeData.getStringF('wrongHWIDMessageFirstPart',
- '<strong>', '</strong>') +
- '</p><p>' +
- loadTimeData.getString('wrongHWIDMessageSecondPart') +
+ $('wrong-hwid-message-content').innerHTML = '<p>' +
+ loadTimeData.getStringF(
+ 'wrongHWIDMessageFirstPart', '<strong>', '</strong>') +
+ '</p><p>' + loadTimeData.getString('wrongHWIDMessageSecondPart') +
'</p>';
}
};
});
-

Powered by Google App Engine
This is Rietveld 408576698