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

Unified Diff: chrome/browser/resources/extensions/extension_commands_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/extensions/extension_commands_overlay.js
diff --git a/chrome/browser/resources/extensions/extension_commands_overlay.js b/chrome/browser/resources/extensions/extension_commands_overlay.js
index 443440b2856d5b69781218e857553d85b7853b25..0da345559739218b7e182509e9384ec3132af584 100644
--- a/chrome/browser/resources/extensions/extension_commands_overlay.js
+++ b/chrome/browser/resources/extensions/extension_commands_overlay.js
@@ -16,8 +16,7 @@ cr.define('extensions', function() {
* Encapsulated handling of the 'Extension Commands' overlay page.
* @constructor
*/
- function ExtensionCommandsOverlay() {
- }
+ function ExtensionCommandsOverlay() {}
cr.addSingletonGetter(ExtensionCommandsOverlay);
@@ -32,7 +31,7 @@ cr.define('extensions', function() {
overlay.addEventListener('cancelOverlay', this.handleDismiss_.bind(this));
this.extensionCommandList_ = new ExtensionCommandList(
- /**@type {HTMLDivElement} */($('extension-command-list')));
+ /**@type {HTMLDivElement} */ ($('extension-command-list')));
$('extension-commands-dismiss').addEventListener('click', function() {
cr.dispatchSimpleEvent(overlay, 'cancelOverlay');
@@ -79,7 +78,5 @@ cr.define('extensions', function() {
};
// Export
- return {
- ExtensionCommandsOverlay: ExtensionCommandsOverlay
- };
+ return {ExtensionCommandsOverlay: ExtensionCommandsOverlay};
});

Powered by Google App Engine
This is Rietveld 408576698