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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline_model/TimelineFrameModel.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/timeline_model/TimelineFrameModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline_model/TimelineFrameModel.js b/third_party/WebKit/Source/devtools/front_end/timeline_model/TimelineFrameModel.js
index c902dd1360c1e676cbae71c0481f37cede010e48..46945c8f630e0e39afb6d8f3fd99cf9fec81b945 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline_model/TimelineFrameModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline_model/TimelineFrameModel.js
@@ -36,7 +36,7 @@ WebInspector.TimelineFrameModel = function(categoryMapper)
{
this._categoryMapper = categoryMapper;
this.reset();
-}
+};
WebInspector.TimelineFrameModel._mainFrameMarkers = [
WebInspector.TimelineModel.RecordType.ScheduleStyleRecalculation,
@@ -379,7 +379,7 @@ WebInspector.TimelineFrameModel.prototype = {
var categoryName = this._categoryMapper(event);
timeByCategory[categoryName] = (timeByCategory[categoryName] || 0) + event.selfTime;
},
-}
+};
/**
* @constructor
@@ -392,7 +392,7 @@ WebInspector.TracingFrameLayerTree = function(target, snapshot)
this._snapshot = snapshot;
/** @type {!Array<!WebInspector.LayerPaintEvent>|undefined} */
this._paints;
-}
+};
WebInspector.TracingFrameLayerTree.prototype = {
/**
@@ -452,7 +452,7 @@ WebInspector.TimelineFrame = function(startTime, startTimeOffset)
this._paints = [];
/** @type {number|undefined} */
this._mainFrameId = undefined;
-}
+};
WebInspector.TimelineFrame.prototype = {
/**
@@ -499,7 +499,7 @@ WebInspector.TimelineFrame.prototype = {
this.timeByCategory[category] = (this.timeByCategory[category] || 0) + time;
this.cpuTime += time;
},
-}
+};
/**
* @constructor
@@ -510,7 +510,7 @@ WebInspector.LayerPaintEvent = function(event, target)
{
this._event = event;
this._target = target;
-}
+};
WebInspector.LayerPaintEvent.prototype = {
/**
@@ -570,4 +570,4 @@ WebInspector.PendingFrame = function(triggerTime, timeByCategory)
/** @type {number|undefined} */
this.mainFrameId = undefined;
this.triggerTime = triggerTime;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698