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

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

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

Powered by Google App Engine
This is Rietveld 408576698