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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.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/sources/XHRBreakpointsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js
index 4364d685db14b6e4271197f684091e9626d9fd67..5c27e8c7d524fe37b57d78014872696918e2e6a5 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/XHRBreakpointsSidebarPane.js
@@ -23,7 +23,7 @@ WebInspector.XHRBreakpointsSidebarPane = function()
this.emptyElement.addEventListener("contextmenu", this._emptyElementContextMenu.bind(this), true);
WebInspector.targetManager.observeTargets(this, WebInspector.Target.Capability.Browser);
this._update();
-}
+};
WebInspector.XHRBreakpointsSidebarPane.prototype = {
/**
@@ -274,4 +274,4 @@ WebInspector.XHRBreakpointsSidebarPane.prototype = {
},
__proto__: WebInspector.BreakpointsSidebarPaneBase.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698