| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 LayerTreeHostImplSnapshot: "cc::LayerTreeHostImpl", | 149 LayerTreeHostImplSnapshot: "cc::LayerTreeHostImpl", |
| 150 PictureSnapshot: "cc::Picture", | 150 PictureSnapshot: "cc::Picture", |
| 151 DisplayItemListSnapshot: "cc::DisplayItemList", | 151 DisplayItemListSnapshot: "cc::DisplayItemList", |
| 152 LatencyInfo: "LatencyInfo", | 152 LatencyInfo: "LatencyInfo", |
| 153 LatencyInfoFlow: "LatencyInfo.Flow", | 153 LatencyInfoFlow: "LatencyInfo.Flow", |
| 154 InputLatencyMouseMove: "InputLatency::MouseMove", | 154 InputLatencyMouseMove: "InputLatency::MouseMove", |
| 155 InputLatencyMouseWheel: "InputLatency::MouseWheel", | 155 InputLatencyMouseWheel: "InputLatency::MouseWheel", |
| 156 ImplSideFling: "InputHandlerProxy::HandleGestureFling::started", | 156 ImplSideFling: "InputHandlerProxy::HandleGestureFling::started", |
| 157 GCIdleLazySweep: "ThreadState::performIdleLazySweep", | 157 GCIdleLazySweep: "ThreadState::performIdleLazySweep", |
| 158 GCCompleteSweep: "ThreadState::completeSweep", | 158 GCCompleteSweep: "ThreadState::completeSweep", |
| 159 GCCollectGarbage: "Heap::collectGarbage", | 159 GCCollectGarbage: "BlinkGCMarking", |
| 160 | 160 |
| 161 // CpuProfile is a virtual event created on frontend to support | 161 // CpuProfile is a virtual event created on frontend to support |
| 162 // serialization of CPU Profiles within tracing timeline data. | 162 // serialization of CPU Profiles within tracing timeline data. |
| 163 CpuProfile: "CpuProfile" | 163 CpuProfile: "CpuProfile" |
| 164 } | 164 } |
| 165 | 165 |
| 166 WebInspector.TimelineModel.Category = { | 166 WebInspector.TimelineModel.Category = { |
| 167 Console: "blink.console", | 167 Console: "blink.console", |
| 168 UserTiming: "blink.user_timing", | 168 UserTiming: "blink.user_timing", |
| 169 LatencyInfo: "latencyInfo" | 169 LatencyInfo: "latencyInfo" |
| (...skipping 1601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1771 }, | 1771 }, |
| 1772 | 1772 |
| 1773 /** | 1773 /** |
| 1774 * @return {!Map<string, !Map<number, number>>} | 1774 * @return {!Map<string, !Map<number, number>>} |
| 1775 */ | 1775 */ |
| 1776 files: function() | 1776 files: function() |
| 1777 { | 1777 { |
| 1778 return this._files; | 1778 return this._files; |
| 1779 } | 1779 } |
| 1780 } | 1780 } |
| OLD | NEW |