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

Side by Side Diff: Source/devtools/front_end/timeline/TimelineModel.js

Issue 717573003: DevTools: add ParseAuthorStyleSheet events to Timeline (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated test expectations Created 6 years, 1 month 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 | Annotate | Revision Log
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorTraceEvents.cpp ('k') | Source/devtools/front_end/timeline/TimelineUIUtils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698