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

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

Issue 781583003: Timeline: prepare to using frame viewer instrumentation event, ignore AnalyzeTask (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | Source/devtools/front_end/timeline/TimelineUIUtils.js » ('j') | 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/timeline/TimelineUIUtils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698