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

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

Issue 1807193003: Show v8.parseOnBackground in DevTools Timeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 MajorGC: "MajorGC", 110 MajorGC: "MajorGC",
111 MinorGC: "MinorGC", 111 MinorGC: "MinorGC",
112 JSFrame: "JSFrame", 112 JSFrame: "JSFrame",
113 JSSample: "JSSample", 113 JSSample: "JSSample",
114 // V8Sample events are coming from tracing and contain raw stacks with funct ion addresses. 114 // V8Sample events are coming from tracing and contain raw stacks with funct ion addresses.
115 // After being processed with help of JitCodeAdded and JitCodeMoved events t hey 115 // After being processed with help of JitCodeAdded and JitCodeMoved events t hey
116 // get translated into function infos and stored as stacks in JSSample event s. 116 // get translated into function infos and stored as stacks in JSSample event s.
117 V8Sample: "V8Sample", 117 V8Sample: "V8Sample",
118 JitCodeAdded: "JitCodeAdded", 118 JitCodeAdded: "JitCodeAdded",
119 JitCodeMoved: "JitCodeMoved", 119 JitCodeMoved: "JitCodeMoved",
120 ParseScriptOnBackground: "v8.parseOnBackground",
120 121
121 UpdateCounters: "UpdateCounters", 122 UpdateCounters: "UpdateCounters",
122 123
123 RequestAnimationFrame: "RequestAnimationFrame", 124 RequestAnimationFrame: "RequestAnimationFrame",
124 CancelAnimationFrame: "CancelAnimationFrame", 125 CancelAnimationFrame: "CancelAnimationFrame",
125 FireAnimationFrame: "FireAnimationFrame", 126 FireAnimationFrame: "FireAnimationFrame",
126 127
127 RequestIdleCallback: "RequestIdleCallback", 128 RequestIdleCallback: "RequestIdleCallback",
128 CancelIdleCallback: "CancelIdleCallback", 129 CancelIdleCallback: "CancelIdleCallback",
129 FireIdleCallback: "FireIdleCallback", 130 FireIdleCallback: "FireIdleCallback",
(...skipping 1645 matching lines...) Expand 10 before | Expand all | Expand 10 after
1775 } 1776 }
1776 }, 1777 },
1777 1778
1778 /** 1779 /**
1779 * @return {!Map<string, !Map<number, number>>} 1780 * @return {!Map<string, !Map<number, number>>}
1780 */ 1781 */
1781 files: function() 1782 files: function()
1782 { 1783 {
1783 return this._files; 1784 return this._files;
1784 } 1785 }
1785 } 1786 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698