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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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: third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js b/third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js
index 91d5f73b2b82c5ba4bdaf99d8716c491e04e25a7..a3e270b9dbf849629f41918ba0be399677c665b5 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ActionRegistry.js
@@ -10,7 +10,7 @@ WebInspector.ActionRegistry = function()
/** @type {!Map.<string, !WebInspector.Action>} */
this._actionsById = new Map();
this._registerActions();
-}
+};
WebInspector.ActionRegistry.prototype = {
_registerActions: function()
@@ -72,7 +72,7 @@ WebInspector.ActionRegistry.prototype = {
{
return this._actionsById.get(actionId) || null;
}
-}
+};
/**
* @constructor
@@ -85,13 +85,13 @@ WebInspector.Action = function(extension)
this._extension = extension;
this._enabled = true;
this._toggled = false;
-}
+};
/** @enum {symbol} */
WebInspector.Action.Events = {
Enabled: Symbol("Enabled"),
Toggled: Symbol("Toggled")
-}
+};
WebInspector.Action.prototype = {
/**
@@ -203,14 +203,14 @@ WebInspector.Action.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @interface
*/
WebInspector.ActionDelegate = function()
{
-}
+};
WebInspector.ActionDelegate.prototype = {
/**
@@ -219,7 +219,7 @@ WebInspector.ActionDelegate.prototype = {
* @return {boolean}
*/
handleAction: function(context, actionId) {}
-}
+};
/** @type {!WebInspector.ActionRegistry} */
WebInspector.actionRegistry;

Powered by Google App Engine
This is Rietveld 408576698