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

Unified Diff: chrome/browser/resources/options/easy_unlock_turn_off_overlay.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (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/options/easy_unlock_turn_off_overlay.js
diff --git a/chrome/browser/resources/options/easy_unlock_turn_off_overlay.js b/chrome/browser/resources/options/easy_unlock_turn_off_overlay.js
index eb065df016ad3252f8fa4712b9c3f8083ee6a9ff..ef224dfd80b9f10af7fe3e28e207e74158c70eff 100644
--- a/chrome/browser/resources/options/easy_unlock_turn_off_overlay.js
+++ b/chrome/browser/resources/options/easy_unlock_turn_off_overlay.js
@@ -22,9 +22,10 @@ cr.define('options', function() {
* @class
*/
function EasyUnlockTurnOffOverlay() {
- Page.call(this, 'easyUnlockTurnOffOverlay',
- loadTimeData.getString('easyUnlockTurnOffTitle'),
- 'easy-unlock-turn-off-overlay');
+ Page.call(
+ this, 'easyUnlockTurnOffOverlay',
+ loadTimeData.getString('easyUnlockTurnOffTitle'),
+ 'easy-unlock-turn-off-overlay');
}
cr.addSingletonGetter(EasyUnlockTurnOffOverlay);
@@ -57,8 +58,8 @@ cr.define('options', function() {
this.setUpServerErrorUI_();
break;
default:
- console.error('Unknow Easy unlock turn off UI state: ' +
- this.uiState_);
+ console.error(
+ 'Unknow Easy unlock turn off UI state: ' + this.uiState_);
this.setUpTurnOffUI_(false);
break;
}
@@ -187,7 +188,5 @@ cr.define('options', function() {
};
// Export
- return {
- EasyUnlockTurnOffOverlay: EasyUnlockTurnOffOverlay
- };
+ return {EasyUnlockTurnOffOverlay: EasyUnlockTurnOffOverlay};
});

Powered by Google App Engine
This is Rietveld 408576698