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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/ListWidget.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/ListWidget.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js b/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
index 3ab657fe035360d942c808e0ef44c900e4bb26c6..0482833d043c8ffa9a819b6980f9243732d4a187 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
@@ -26,14 +26,14 @@ WebInspector.ListWidget = function(delegate)
this._emptyPlaceholder = null;
this.clear();
-}
+};
/**
* @interface
*/
WebInspector.ListWidget.Delegate = function()
{
-}
+};
WebInspector.ListWidget.Delegate.prototype = {
/**
@@ -61,7 +61,7 @@ WebInspector.ListWidget.Delegate.prototype = {
* @param {boolean} isNew
*/
commitEdit: function(item, editor, isNew) { }
-}
+};
WebInspector.ListWidget.prototype = {
clear: function()
@@ -260,7 +260,7 @@ WebInspector.ListWidget.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -308,7 +308,7 @@ WebInspector.ListWidget.Editor = function()
this._item = null;
/** @type {number} */
this._index = -1;
-}
+};
WebInspector.ListWidget.Editor.prototype = {
/**
@@ -428,4 +428,4 @@ WebInspector.ListWidget.Editor.prototype = {
this._index = -1;
cancel();
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698