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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/BlackboxManager.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/bindings/BlackboxManager.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/BlackboxManager.js b/third_party/WebKit/Source/devtools/front_end/bindings/BlackboxManager.js
index d2c3e8ff4fcb04e7a16d49266f456ba9621dc1bd..e310c23312f15e4ba92a15dbd57a99fc69ab84b5 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/BlackboxManager.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/BlackboxManager.js
@@ -22,7 +22,7 @@ WebInspector.BlackboxManager = function(debuggerWorkspaceBinding)
this._isBlackboxedURLCache = new Map();
WebInspector.targetManager.observeTargets(this);
-}
+};
WebInspector.BlackboxManager.prototype = {
/**
@@ -449,7 +449,7 @@ WebInspector.BlackboxManager.prototype = {
}
return prefix + name.escapeForRegExp() + (url.endsWith(name) ? "$" : "\\b");
}
-}
+};
/** @type {!WebInspector.BlackboxManager} */
WebInspector.blackboxManager;

Powered by Google App Engine
This is Rietveld 408576698