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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.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/SuggestBox.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js b/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
index b098408c0bf8e5747e9ecabd7d3f72d11397ce61..6f8e04eac3fb2b70a9b9f604af41789b2804e13f 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
@@ -33,7 +33,7 @@
*/
WebInspector.SuggestBoxDelegate = function()
{
-}
+};
WebInspector.SuggestBoxDelegate.prototype = {
/**
@@ -46,7 +46,7 @@ WebInspector.SuggestBoxDelegate.prototype = {
* acceptSuggestion will be always called after call to applySuggestion with isIntermediateSuggestion being equal to false.
*/
acceptSuggestion: function() { },
-}
+};
/**
* @constructor
@@ -84,7 +84,7 @@ WebInspector.SuggestBox = function(suggestBoxDelegate, maxItemsHeight, captureEn
this._userEnteredText = "";
/** @type {!WebInspector.SuggestBox.Suggestions} */
this._items = [];
-}
+};
/**
* @typedef {!Array.<{title: string, className: (string|undefined)}>}
@@ -541,7 +541,7 @@ WebInspector.SuggestBox.prototype = {
this._elementList[index] = this._createItemElement(this._userEnteredText, this._items[index].title, this._items[index].className);
return this._elementList[index];
}
-}
+};
/**
* @constructor
@@ -558,7 +558,7 @@ WebInspector.SuggestBox.Overlay = function()
this._bottomSpacerElement = this._horizontalElement.createChild("div", "suggest-box-bottom-spacer");
this._resize();
document.body.appendChild(this.element);
-}
+};
WebInspector.SuggestBox.Overlay.prototype = {
/**
@@ -609,4 +609,4 @@ WebInspector.SuggestBox.Overlay.prototype = {
{
this.element.remove();
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698