| 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 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1243 | 1243 |
| 1244 get selectable() | 1244 get selectable() |
| 1245 { | 1245 { |
| 1246 return true; | 1246 return true; |
| 1247 }, | 1247 }, |
| 1248 | 1248 |
| 1249 __proto__: WebInspector.SidebarTreeElement.prototype | 1249 __proto__: WebInspector.SidebarTreeElement.prototype |
| 1250 } | 1250 } |
| 1251 | 1251 |
| 1252 | 1252 |
| 1253 importScript("CPUProfileModel.js"); |
| 1253 importScript("CPUProfileDataGrid.js"); | 1254 importScript("CPUProfileDataGrid.js"); |
| 1254 importScript("CPUProfileBottomUpDataGrid.js"); | 1255 importScript("CPUProfileBottomUpDataGrid.js"); |
| 1255 importScript("CPUProfileTopDownDataGrid.js"); | 1256 importScript("CPUProfileTopDownDataGrid.js"); |
| 1256 importScript("CPUProfileFlameChart.js"); | 1257 importScript("CPUProfileFlameChart.js"); |
| 1257 importScript("CPUProfileView.js"); | 1258 importScript("CPUProfileView.js"); |
| 1258 importScript("HeapSnapshotCommon.js"); | 1259 importScript("HeapSnapshotCommon.js"); |
| 1259 importScript("HeapSnapshotProxy.js"); | 1260 importScript("HeapSnapshotProxy.js"); |
| 1260 importScript("HeapSnapshotDataGrids.js"); | 1261 importScript("HeapSnapshotDataGrids.js"); |
| 1261 importScript("HeapSnapshotGridNodes.js"); | 1262 importScript("HeapSnapshotGridNodes.js"); |
| 1262 importScript("HeapSnapshotView.js"); | 1263 importScript("HeapSnapshotView.js"); |
| 1263 importScript("ProfileLauncherView.js"); | 1264 importScript("ProfileLauncherView.js"); |
| 1264 importScript("CanvasProfileView.js"); | 1265 importScript("CanvasProfileView.js"); |
| 1265 importScript("CanvasReplayStateView.js"); | 1266 importScript("CanvasReplayStateView.js"); |
| 1266 importScript("PieChart.js"); | 1267 importScript("PieChart.js"); |
| 1267 | 1268 |
| 1268 WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry
(); | 1269 WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry
(); |
| OLD | NEW |