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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.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/ui_lazy/FilteredListWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
index e94554d0b438d04a5c1e70c63a752a76589425c7..1e39accaa0ba5ca58bb48d37c1b54b4218760e83 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
@@ -50,7 +50,7 @@ WebInspector.FilteredListWidget = function(delegate)
/** @typedef {!Array.<!Element>} */
this._elements = [];
-}
+};
/**
* @param {string} query
@@ -69,7 +69,7 @@ WebInspector.FilteredListWidget.filterRegex = function(query)
regexString += c;
}
return new RegExp(regexString, "i");
-}
+};
WebInspector.FilteredListWidget.prototype = {
showAsDialog: function()
@@ -401,7 +401,7 @@ WebInspector.FilteredListWidget.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -410,7 +410,7 @@ WebInspector.FilteredListWidget.prototype = {
WebInspector.FilteredListWidget.Delegate = function(promptHistory)
{
this._promptHistory = promptHistory;
-}
+};
WebInspector.FilteredListWidget.Delegate.prototype = {
/**
@@ -583,4 +583,4 @@ WebInspector.FilteredListWidget.Delegate.prototype = {
dispose: function()
{
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698