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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.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/SourcesSearchScope.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
index 85fb0a2271222061e173a2da2e8e396c857df551..b050993f17857229a0b283acb259f3f971b01fd1 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesSearchScope.js
@@ -34,7 +34,7 @@ WebInspector.SourcesSearchScope = function()
{
// FIXME: Add title once it is used by search controller.
this._searchId = 0;
-}
+};
/**
* @param {!WebInspector.UISourceCode} uiSourceCode1
@@ -54,7 +54,7 @@ WebInspector.SourcesSearchScope._filesComparator = function(uiSourceCode1, uiSou
if (!url1 && url2)
return 1;
return String.naturalOrderComparator(uiSourceCode1.fullDisplayName(), uiSourceCode2.fullDisplayName());
-}
+};
WebInspector.SourcesSearchScope.prototype = {
@@ -311,4 +311,4 @@ WebInspector.SourcesSearchScope.prototype = {
{
return new WebInspector.FileBasedSearchResultsPane(searchConfig);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698