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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.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/network/BlockedURLsPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
index 03d4b49439aaf8d0023c95e18ad2eee031e27984..f3ce22d34fa74d9b99b7e2ccb13cc20fdc80befe 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
@@ -43,7 +43,7 @@ WebInspector.BlockedURLsPane = function()
this._updateThrottler = new WebInspector.Throttler(200);
this._update();
-}
+};
WebInspector.BlockedURLsPane.prototype = {
/**
@@ -275,7 +275,7 @@ WebInspector.BlockedURLsPane.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/** @type {?WebInspector.BlockedURLsPane} */
@@ -285,7 +285,7 @@ WebInspector.BlockedURLsPane.reset = function()
{
if (WebInspector.BlockedURLsPane._instance)
WebInspector.BlockedURLsPane._instance.reset();
-}
+};
/**
* @constructor
@@ -293,7 +293,7 @@ WebInspector.BlockedURLsPane.reset = function()
*/
WebInspector.BlockedURLsPane.ActionDelegate = function()
{
-}
+};
WebInspector.BlockedURLsPane.ActionDelegate.prototype = {
/**
@@ -307,5 +307,5 @@ WebInspector.BlockedURLsPane.ActionDelegate.prototype = {
WebInspector.viewManager.showView("network.blocked-urls");
return true;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698