OLD | NEW |
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 Loading... |
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 Loading... |
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'); |
OLD | NEW |