OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 { | 1240 { |
1241 return true; | 1241 return true; |
1242 }, | 1242 }, |
1243 | 1243 |
1244 __proto__: WebInspector.SidebarTreeElement.prototype | 1244 __proto__: WebInspector.SidebarTreeElement.prototype |
1245 } | 1245 } |
1246 | 1246 |
1247 | 1247 |
1248 importScript("ProfileDataGridTree.js"); | 1248 importScript("ProfileDataGridTree.js"); |
1249 importScript("BottomUpProfileDataGridTree.js"); | 1249 importScript("BottomUpProfileDataGridTree.js"); |
| 1250 importScript("CPUProfileFlameChart.js"); |
1250 importScript("CPUProfileView.js"); | 1251 importScript("CPUProfileView.js"); |
1251 importScript("HeapSnapshotCommon.js"); | 1252 importScript("HeapSnapshotCommon.js"); |
1252 importScript("HeapSnapshotProxy.js"); | 1253 importScript("HeapSnapshotProxy.js"); |
1253 importScript("HeapSnapshotDataGrids.js"); | 1254 importScript("HeapSnapshotDataGrids.js"); |
1254 importScript("HeapSnapshotGridNodes.js"); | 1255 importScript("HeapSnapshotGridNodes.js"); |
1255 importScript("HeapSnapshotView.js"); | 1256 importScript("HeapSnapshotView.js"); |
1256 importScript("ProfileLauncherView.js"); | 1257 importScript("ProfileLauncherView.js"); |
1257 importScript("TopDownProfileDataGridTree.js"); | 1258 importScript("TopDownProfileDataGridTree.js"); |
1258 importScript("CanvasProfileView.js"); | 1259 importScript("CanvasProfileView.js"); |
1259 importScript("CanvasReplayStateView.js"); | 1260 importScript("CanvasReplayStateView.js"); |
1260 importScript("PieChart.js"); | 1261 importScript("PieChart.js"); |
1261 | 1262 |
1262 WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry
(); | 1263 WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry
(); |
OLD | NEW |