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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.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/TimelineController.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
index 171705560368c8e1f9484ef4d497e7ae5f91eab0..7bdf2d2a397ba06405f11c58ea91624c5dd59c40 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineController.js
@@ -17,7 +17,7 @@ WebInspector.TimelineController = function(target, delegate, tracingModel)
this._tracingModel = tracingModel;
this._targets = [];
WebInspector.targetManager.observeTargets(this);
-}
+};
WebInspector.TimelineController.prototype = {
/**
@@ -45,7 +45,7 @@ WebInspector.TimelineController.prototype = {
WebInspector.TimelineModel.Category.Console,
WebInspector.TimelineModel.Category.UserTiming
];
- categoriesArray.push(WebInspector.TimelineModel.Category.LatencyInfo)
+ categoriesArray.push(WebInspector.TimelineModel.Category.LatencyInfo);
if (Runtime.experiments.isEnabled("timelineFlowEvents")) {
categoriesArray.push(disabledByDefault("toplevel.flow"),
@@ -293,4 +293,4 @@ WebInspector.TimelineController.prototype = {
{
this._delegate.loadingProgress(progress);
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698