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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/timeline_model/TimelineModel.js

Issue 2623613008: Add a new top-level inspector timeline event for the PrePaint step (Closed)
Patch Set: Created 3 years, 11 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 ActivateLayerTree: 'ActivateLayerTree', 1163 ActivateLayerTree: 'ActivateLayerTree',
1164 DrawFrame: 'DrawFrame', 1164 DrawFrame: 'DrawFrame',
1165 HitTest: 'HitTest', 1165 HitTest: 'HitTest',
1166 ScheduleStyleRecalculation: 'ScheduleStyleRecalculation', 1166 ScheduleStyleRecalculation: 'ScheduleStyleRecalculation',
1167 RecalculateStyles: 'RecalculateStyles', // For backwards compatibility only, now replaced by UpdateLayoutTree. 1167 RecalculateStyles: 'RecalculateStyles', // For backwards compatibility only, now replaced by UpdateLayoutTree.
1168 UpdateLayoutTree: 'UpdateLayoutTree', 1168 UpdateLayoutTree: 'UpdateLayoutTree',
1169 InvalidateLayout: 'InvalidateLayout', 1169 InvalidateLayout: 'InvalidateLayout',
1170 Layout: 'Layout', 1170 Layout: 'Layout',
1171 UpdateLayer: 'UpdateLayer', 1171 UpdateLayer: 'UpdateLayer',
1172 UpdateLayerTree: 'UpdateLayerTree', 1172 UpdateLayerTree: 'UpdateLayerTree',
1173 PreparePaint: 'PreparePaint',
1173 PaintSetup: 'PaintSetup', 1174 PaintSetup: 'PaintSetup',
1174 Paint: 'Paint', 1175 Paint: 'Paint',
1175 PaintImage: 'PaintImage', 1176 PaintImage: 'PaintImage',
1176 Rasterize: 'Rasterize', 1177 Rasterize: 'Rasterize',
1177 RasterTask: 'RasterTask', 1178 RasterTask: 'RasterTask',
1178 ScrollLayer: 'ScrollLayer', 1179 ScrollLayer: 'ScrollLayer',
1179 CompositeLayers: 'CompositeLayers', 1180 CompositeLayers: 'CompositeLayers',
1180 1181
1181 ScheduleStyleInvalidationTracking: 'ScheduleStyleInvalidationTracking', 1182 ScheduleStyleInvalidationTracking: 'ScheduleStyleInvalidationTracking',
1182 StyleRecalcInvalidationTracking: 'StyleRecalcInvalidationTracking', 1183 StyleRecalcInvalidationTracking: 'StyleRecalcInvalidationTracking',
(...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
2053 var data = event[TimelineModel.TimelineData._symbol]; 2054 var data = event[TimelineModel.TimelineData._symbol];
2054 if (!data) { 2055 if (!data) {
2055 data = new TimelineModel.TimelineData(); 2056 data = new TimelineModel.TimelineData();
2056 event[TimelineModel.TimelineData._symbol] = data; 2057 event[TimelineModel.TimelineData._symbol] = data;
2057 } 2058 }
2058 return data; 2059 return data;
2059 } 2060 }
2060 }; 2061 };
2061 2062
2062 TimelineModel.TimelineData._symbol = Symbol('timelineData'); 2063 TimelineModel.TimelineData._symbol = Symbol('timelineData');
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698