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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/EventListenersView.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/components/EventListenersView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/EventListenersView.js b/third_party/WebKit/Source/devtools/front_end/components/EventListenersView.js
index 13a48968bf86526d9291ac0052e0cfea4e2a6b32..601b8e37cca96c54fc3b94b6b546f53b39ce0b0f 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/EventListenersView.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/EventListenersView.js
@@ -22,13 +22,13 @@ WebInspector.EventListenersView = function(element, changeCallback)
this._treeOutline.registerRequiredCSS("components/eventListenersView.css");
this._treeOutline.setComparator(WebInspector.EventListenersTreeElement.comparator);
this._treeOutline.element.classList.add("monospace");
- this._element.appendChild(this._treeOutline.element)
+ this._element.appendChild(this._treeOutline.element);
this._emptyHolder = createElementWithClass("div", "gray-info-message");
this._emptyHolder.textContent = WebInspector.UIString("No Event Listeners");
this._linkifier = new WebInspector.Linkifier();
/** @type {!Map<string, !WebInspector.EventListenersTreeElement>} */
this._treeItemMap = new Map();
-}
+};
WebInspector.EventListenersView.prototype = {
/**
@@ -211,7 +211,7 @@ WebInspector.EventListenersView.prototype = {
_eventListenersArrivedForTest: function()
{
}
-}
+};
/**
* @constructor
@@ -227,7 +227,7 @@ WebInspector.EventListenersTreeElement = function(type, linkifier, changeCallbac
this.selectable = false;
this._linkifier = linkifier;
this._changeCallback = changeCallback;
-}
+};
/**
* @param {!TreeElement} element1
@@ -238,7 +238,7 @@ WebInspector.EventListenersTreeElement.comparator = function(element1, element2)
if (element1.title === element2.title)
return 0;
return element1.title > element2.title ? 1 : -1;
-}
+};
WebInspector.EventListenersTreeElement.prototype = {
/**
@@ -252,7 +252,7 @@ WebInspector.EventListenersTreeElement.prototype = {
},
__proto__: TreeElement.prototype
-}
+};
/**
* @constructor
@@ -270,7 +270,7 @@ WebInspector.ObjectEventListenerBar = function(eventListener, object, linkifier,
this.selectable = false;
this._setTitle(object, linkifier);
this._changeCallback = changeCallback;
-}
+};
WebInspector.ObjectEventListenerBar.prototype = {
onpopulate: function()
@@ -360,4 +360,4 @@ WebInspector.ObjectEventListenerBar.prototype = {
},
__proto__: TreeElement.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698