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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |