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

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

Issue 1170153004: DevTools Timeline: expose HitTest event (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 GPUTask: "GPUTask", 55 GPUTask: "GPUTask",
56 56
57 Animation: "Animation", 57 Animation: "Animation",
58 RequestMainThreadFrame: "RequestMainThreadFrame", 58 RequestMainThreadFrame: "RequestMainThreadFrame",
59 BeginFrame: "BeginFrame", 59 BeginFrame: "BeginFrame",
60 NeedsBeginFrameChanged: "NeedsBeginFrameChanged", 60 NeedsBeginFrameChanged: "NeedsBeginFrameChanged",
61 BeginMainThreadFrame: "BeginMainThreadFrame", 61 BeginMainThreadFrame: "BeginMainThreadFrame",
62 ActivateLayerTree: "ActivateLayerTree", 62 ActivateLayerTree: "ActivateLayerTree",
63 DrawFrame: "DrawFrame", 63 DrawFrame: "DrawFrame",
64 HitTest: "HitTest",
64 ScheduleStyleRecalculation: "ScheduleStyleRecalculation", 65 ScheduleStyleRecalculation: "ScheduleStyleRecalculation",
65 RecalculateStyles: "RecalculateStyles", // For backwards compatibility only, now replaced by UpdateLayoutTree. 66 RecalculateStyles: "RecalculateStyles", // For backwards compatibility only, now replaced by UpdateLayoutTree.
66 UpdateLayoutTree: "UpdateLayoutTree", 67 UpdateLayoutTree: "UpdateLayoutTree",
67 InvalidateLayout: "InvalidateLayout", 68 InvalidateLayout: "InvalidateLayout",
68 Layout: "Layout", 69 Layout: "Layout",
69 UpdateLayer: "UpdateLayer", 70 UpdateLayer: "UpdateLayer",
70 UpdateLayerTree: "UpdateLayerTree", 71 UpdateLayerTree: "UpdateLayerTree",
71 PaintSetup: "PaintSetup", 72 PaintSetup: "PaintSetup",
72 Paint: "Paint", 73 Paint: "Paint",
73 PaintImage: "PaintImage", 74 PaintImage: "PaintImage",
(...skipping 2001 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 /** @type {!Object.<string, !Array.<!WebInspector.InvalidationTrackingEv ent>>} */ 2076 /** @type {!Object.<string, !Array.<!WebInspector.InvalidationTrackingEv ent>>} */
2076 this._invalidations = {}; 2077 this._invalidations = {};
2077 /** @type {!Object.<number, !Array.<!WebInspector.InvalidationTrackingEv ent>>} */ 2078 /** @type {!Object.<number, !Array.<!WebInspector.InvalidationTrackingEv ent>>} */
2078 this._invalidationsByNodeId = {}; 2079 this._invalidationsByNodeId = {};
2079 2080
2080 this._lastRecalcStyle = undefined; 2081 this._lastRecalcStyle = undefined;
2081 this._lastPaintWithLayer = undefined; 2082 this._lastPaintWithLayer = undefined;
2082 this._didPaint = false; 2083 this._didPaint = false;
2083 } 2084 }
2084 } 2085 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698