Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineModel.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineModel.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineModel.js |
| index 6609c624caee7ff510c537ca8fc394132ea90d93..824f26565e5f61b9b00e58cf6062781ec19f329e 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineModel.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineModel.js |
| @@ -57,8 +57,8 @@ WebInspector.TimelineModel.RecordType = { |
| DrawFrame: "DrawFrame", |
| HitTest: "HitTest", |
| ScheduleStyleRecalculation: "ScheduleStyleRecalculation", |
| - RecalculateStyles: "RecalculateStyles", // For backwards compatibility only, now replaced by UpdateLayoutTree. |
| - UpdateLayoutTree: "UpdateLayoutTree", |
|
samli
2016/05/10 03:44:00
I think this might actually need to stick around f
|
| + RecalculateStyles: "RecalculateStyles", // For backwards compatibility only, now replaced by UpdateStyleAndLayoutTree. |
| + UpdateStyleAndLayoutTree: "UpdateStyleAndLayoutTree", |
| InvalidateLayout: "InvalidateLayout", |
| Layout: "Layout", |
| UpdateLayer: "UpdateLayer", |
| @@ -824,7 +824,7 @@ WebInspector.TimelineModel.prototype = { |
| this._lastScheduleStyleRecalculation[event.args["data"]["frame"]] = event; |
| break; |
| - case recordTypes.UpdateLayoutTree: |
| + case recordTypes.UpdateStyleAndLayoutTree: |
| case recordTypes.RecalculateStyles: |
| this._invalidationTracker.didRecalcStyle(event); |
| if (event.args["beginData"]) |