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

Side by Side Diff: Source/devtools/front_end/ProfilesPanel.js

Issue 236893002: DevTools: Move CPUProfileDataModel and CPUFlameChartDataProvider into a separate file (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
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
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 ();
OLDNEW
« no previous file with comments | « Source/devtools/front_end/CPUProfileView.js ('k') | Source/devtools/scripts/frontend_modules.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698