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

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

Issue 212593009: FlameChart: move CPUProfiler related part of the FlameChart into a separate file. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: missed file was added. test was fixed. Created 6 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 | 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 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ();
OLDNEW
« no previous file with comments | « Source/devtools/front_end/FlameChart.js ('k') | Source/devtools/front_end/TimelineFlameChart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698