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