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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/FileBasedSearchResultsPane.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/FileBasedSearchResultsPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/FileBasedSearchResultsPane.js b/third_party/WebKit/Source/devtools/front_end/sources/FileBasedSearchResultsPane.js
index 08568e6d08be8f03f64cf5012736a00f7bfd6a44..626d153ae435cbeb5077e570a8a2840636474ad7 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/FileBasedSearchResultsPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/FileBasedSearchResultsPane.js
@@ -17,7 +17,7 @@ WebInspector.FileBasedSearchResultsPane = function(searchConfig)
this.element.appendChild(this._treeOutline.element);
this._matchesExpandedCount = 0;
-}
+};
WebInspector.FileBasedSearchResultsPane.matchesExpandedByDefaultCount = 20;
WebInspector.FileBasedSearchResultsPane.fileMatchesShownAtOnce = 20;
@@ -50,7 +50,7 @@ WebInspector.FileBasedSearchResultsPane.prototype = {
},
__proto__: WebInspector.SearchResultsPane.prototype
-}
+};
/**
* @constructor
@@ -66,7 +66,7 @@ WebInspector.FileBasedSearchResultsPane.FileTreeElement = function(searchConfig,
this.toggleOnClick = true;
this.selectable = false;
-}
+};
WebInspector.FileBasedSearchResultsPane.FileTreeElement.prototype = {
onexpand: function()
@@ -224,4 +224,4 @@ WebInspector.FileBasedSearchResultsPane.FileTreeElement.prototype = {
},
__proto__: TreeElement.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698