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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.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/DOMBreakpointsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
index 42654145de2d4c71d8d5678a69f01c64e2bd5682..29153b1afa5ea3b59263264f4d5fa37fa4afcb2b 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/DOMBreakpointsSidebarPane.js
@@ -59,7 +59,7 @@ WebInspector.DOMBreakpointsSidebarPane = function()
WebInspector.targetManager.addModelListener(WebInspector.DOMModel, WebInspector.DOMModel.Events.NodeRemoved, this._nodeRemoved, this);
this._update();
-}
+};
WebInspector.DOMBreakpointsSidebarPane.Marker = "breakpoint-marker";
@@ -404,7 +404,7 @@ WebInspector.DOMBreakpointsSidebarPane.prototype = {
},
__proto__: WebInspector.BreakpointsSidebarPaneBase.prototype
-}
+};
/**
* @constructor
@@ -414,7 +414,7 @@ WebInspector.DOMBreakpointsSidebarPane.Proxy = function()
{
WebInspector.VBox.call(this);
this.registerRequiredCSS("components/breakpointsList.css");
-}
+};
WebInspector.DOMBreakpointsSidebarPane.Proxy.prototype = {
wasShown: function()
@@ -426,7 +426,7 @@ WebInspector.DOMBreakpointsSidebarPane.Proxy.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @type {!WebInspector.DOMBreakpointsSidebarPane}

Powered by Google App Engine
This is Rietveld 408576698