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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/EventSourceMessagesView.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/network/EventSourceMessagesView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/EventSourceMessagesView.js b/third_party/WebKit/Source/devtools/front_end/network/EventSourceMessagesView.js
index 9f7a2d0805173063b5da463ce20131cc9ad5ebda..8734a10b62db2d79f81befec5e75e18a4ab03237 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/EventSourceMessagesView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/EventSourceMessagesView.js
@@ -29,7 +29,7 @@ WebInspector.EventSourceMessagesView = function(request)
this._dataGrid.setName("EventSourceMessagesView");
this._dataGrid.asWidget().show(this.element);
-}
+};
WebInspector.EventSourceMessagesView.prototype = {
wasShown: function()
@@ -68,7 +68,7 @@ WebInspector.EventSourceMessagesView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -84,11 +84,11 @@ WebInspector.EventSourceMessageNode = function(message)
timeNode.createTextChild(timeText);
timeNode.title = time.toLocaleString();
WebInspector.SortableDataGridNode.call(this, {id: message.eventId, type: message.eventName, data: message.data, time: timeNode});
-}
+};
WebInspector.EventSourceMessageNode.prototype = {
__proto__: WebInspector.SortableDataGridNode.prototype
-}
+};
/**
* @param {string} field
@@ -101,7 +101,7 @@ WebInspector.EventSourceMessageNodeComparator = function(field, a, b)
var aValue = a._message[field];
var bValue = b._message[field];
return aValue < bValue ? -1 : aValue > bValue ? 1 : 0;
-}
+};
/** @type {!Object.<string, !WebInspector.SortableDataGrid.NodeComparator>} */
WebInspector.EventSourceMessageNode.Comparators = {

Powered by Google App Engine
This is Rietveld 408576698