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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
64 RecalculateStyles: "RecalculateStyles", | 64 RecalculateStyles: "RecalculateStyles", |
65 InvalidateLayout: "InvalidateLayout", | 65 InvalidateLayout: "InvalidateLayout", |
66 Layout: "Layout", | 66 Layout: "Layout", |
67 UpdateLayer: "UpdateLayer", | 67 UpdateLayer: "UpdateLayer", |
68 UpdateLayerTree: "UpdateLayerTree", | 68 UpdateLayerTree: "UpdateLayerTree", |
69 PaintSetup: "PaintSetup", | 69 PaintSetup: "PaintSetup", |
70 Paint: "Paint", | 70 Paint: "Paint", |
71 PaintImage: "PaintImage", | 71 PaintImage: "PaintImage", |
72 Rasterize: "Rasterize", | 72 Rasterize: "Rasterize", |
73 RasterTask: "RasterTask", | 73 RasterTask: "RasterTask", |
74 AnalyzeTask: "AnalyzeTask", | |
alph
2014/12/08 15:36:02
Don't we just skip unknown event types by default?
| |
74 ScrollLayer: "ScrollLayer", | 75 ScrollLayer: "ScrollLayer", |
75 CompositeLayers: "CompositeLayers", | 76 CompositeLayers: "CompositeLayers", |
76 | 77 |
77 ScheduleStyleInvalidationTracking: "ScheduleStyleInvalidationTracking", | 78 ScheduleStyleInvalidationTracking: "ScheduleStyleInvalidationTracking", |
78 StyleRecalcInvalidationTracking: "StyleRecalcInvalidationTracking", | 79 StyleRecalcInvalidationTracking: "StyleRecalcInvalidationTracking", |
79 StyleInvalidatorInvalidationTracking: "StyleInvalidatorInvalidationTracking" , | 80 StyleInvalidatorInvalidationTracking: "StyleInvalidatorInvalidationTracking" , |
80 LayoutInvalidationTracking: "LayoutInvalidationTracking", | 81 LayoutInvalidationTracking: "LayoutInvalidationTracking", |
81 LayerInvalidationTracking: "LayerInvalidationTracking", | 82 LayerInvalidationTracking: "LayerInvalidationTracking", |
82 PaintInvalidationTracking: "PaintInvalidationTracking", | 83 PaintInvalidationTracking: "PaintInvalidationTracking", |
83 | 84 |
(...skipping 1880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1964 _initializePerFrameState: function() | 1965 _initializePerFrameState: function() |
1965 { | 1966 { |
1966 /** @type {!Object.<string, ?Array.<!WebInspector.InvalidationTrackingEv ent>>} */ | 1967 /** @type {!Object.<string, ?Array.<!WebInspector.InvalidationTrackingEv ent>>} */ |
1967 this._invalidations = {}; | 1968 this._invalidations = {}; |
1968 | 1969 |
1969 this._lastRecalcStyle = undefined; | 1970 this._lastRecalcStyle = undefined; |
1970 this._lastPaintWithLayer = undefined; | 1971 this._lastPaintWithLayer = undefined; |
1971 this._didPaint = false; | 1972 this._didPaint = false; |
1972 } | 1973 } |
1973 } | 1974 } |
OLD | NEW |