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}; |
}); |