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); |
} |
-} |
+}; |