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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 RasterTask: "RasterTask", | 72 RasterTask: "RasterTask", |
73 ScrollLayer: "ScrollLayer", | 73 ScrollLayer: "ScrollLayer", |
74 CompositeLayers: "CompositeLayers", | 74 CompositeLayers: "CompositeLayers", |
75 | 75 |
76 StyleRecalcInvalidationTracking: "StyleRecalcInvalidationTracking", | 76 StyleRecalcInvalidationTracking: "StyleRecalcInvalidationTracking", |
77 LayoutInvalidationTracking: "LayoutInvalidationTracking", | 77 LayoutInvalidationTracking: "LayoutInvalidationTracking", |
78 LayerInvalidationTracking: "LayerInvalidationTracking", | 78 LayerInvalidationTracking: "LayerInvalidationTracking", |
79 PaintInvalidationTracking: "PaintInvalidationTracking", | 79 PaintInvalidationTracking: "PaintInvalidationTracking", |
80 | 80 |
81 ParseHTML: "ParseHTML", | 81 ParseHTML: "ParseHTML", |
| 82 ParseAuthorStyleSheet: "ParseAuthorStyleSheet", |
82 | 83 |
83 TimerInstall: "TimerInstall", | 84 TimerInstall: "TimerInstall", |
84 TimerRemove: "TimerRemove", | 85 TimerRemove: "TimerRemove", |
85 TimerFire: "TimerFire", | 86 TimerFire: "TimerFire", |
86 | 87 |
87 XHRReadyStateChange: "XHRReadyStateChange", | 88 XHRReadyStateChange: "XHRReadyStateChange", |
88 XHRLoad: "XHRLoad", | 89 XHRLoad: "XHRLoad", |
89 EvaluateScript: "EvaluateScript", | 90 EvaluateScript: "EvaluateScript", |
90 | 91 |
91 MarkLoad: "MarkLoad", | 92 MarkLoad: "MarkLoad", |
(...skipping 1595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1687 _initializePerFrameState: function() | 1688 _initializePerFrameState: function() |
1688 { | 1689 { |
1689 /** @type {!Array.<!WebInspector.InvalidationTrackingEvent>} */ | 1690 /** @type {!Array.<!WebInspector.InvalidationTrackingEvent>} */ |
1690 this._invalidationEvents = []; | 1691 this._invalidationEvents = []; |
1691 this._lastStyleRecalcEventIndex = 0; | 1692 this._lastStyleRecalcEventIndex = 0; |
1692 this._lastLayoutEventIndex = 0; | 1693 this._lastLayoutEventIndex = 0; |
1693 this._lastPaintWithLayer = undefined; | 1694 this._lastPaintWithLayer = undefined; |
1694 this._didPaint = false; | 1695 this._didPaint = false; |
1695 } | 1696 } |
1696 } | 1697 } |
OLD | NEW |