| 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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1335 | 1335 |
| 1336 get selectable() | 1336 get selectable() |
| 1337 { | 1337 { |
| 1338 return true; | 1338 return true; |
| 1339 }, | 1339 }, |
| 1340 | 1340 |
| 1341 __proto__: WebInspector.SidebarTreeElement.prototype | 1341 __proto__: WebInspector.SidebarTreeElement.prototype |
| 1342 } | 1342 } |
| 1343 | 1343 |
| 1344 | 1344 |
| 1345 importScript("../sdk/CPUProfileModel.js"); | |
| 1346 importScript("CPUProfileDataGrid.js"); | 1345 importScript("CPUProfileDataGrid.js"); |
| 1347 importScript("CPUProfileBottomUpDataGrid.js"); | 1346 importScript("CPUProfileBottomUpDataGrid.js"); |
| 1348 importScript("CPUProfileTopDownDataGrid.js"); | 1347 importScript("CPUProfileTopDownDataGrid.js"); |
| 1349 importScript("CPUProfileFlameChart.js"); | 1348 importScript("CPUProfileFlameChart.js"); |
| 1350 importScript("CPUProfileView.js"); | 1349 importScript("CPUProfileView.js"); |
| 1351 importScript("HeapSnapshotCommon.js"); | 1350 importScript("HeapSnapshotCommon.js"); |
| 1352 importScript("HeapSnapshotProxy.js"); | 1351 importScript("HeapSnapshotProxy.js"); |
| 1353 importScript("HeapSnapshotDataGrids.js"); | 1352 importScript("HeapSnapshotDataGrids.js"); |
| 1354 importScript("HeapSnapshotGridNodes.js"); | 1353 importScript("HeapSnapshotGridNodes.js"); |
| 1355 importScript("HeapSnapshotView.js"); | 1354 importScript("HeapSnapshotView.js"); |
| 1356 importScript("ProfileLauncherView.js"); | 1355 importScript("ProfileLauncherView.js"); |
| 1357 importScript("CanvasProfileView.js"); | 1356 importScript("CanvasProfileView.js"); |
| 1358 importScript("CanvasReplayStateView.js"); | 1357 importScript("CanvasReplayStateView.js"); |
| 1359 | 1358 |
| 1360 WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry
(); | 1359 WebInspector.ProfileTypeRegistry.instance = new WebInspector.ProfileTypeRegistry
(); |
| OLD | NEW |