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

Unified Diff: Source/devtools/front_end/ProfilesPanel.js

Issue 21049007: DevTools: Drop CSS Selector Profiler (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove forgotten test Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/CSSSelectorProfileView.js ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/ProfilesPanel.js
diff --git a/Source/devtools/front_end/ProfilesPanel.js b/Source/devtools/front_end/ProfilesPanel.js
index ead1beca14bac41a5efc8ba1e95873735fcfa5c4..d5d5ffb5e3970a519227eb51e1bf8c51c688fb18 100644
--- a/Source/devtools/front_end/ProfilesPanel.js
+++ b/Source/devtools/front_end/ProfilesPanel.js
@@ -421,8 +421,6 @@ WebInspector.ProfilesPanel = function(name, type)
this._launcherView.addEventListener(WebInspector.MultiProfileLauncherView.EventTypes.ProfileTypeSelected, this._onProfileTypeSelected, this);
this._registerProfileType(new WebInspector.CPUProfileType());
- if (!WebInspector.WorkerManager.isWorkerFrontend())
- this._registerProfileType(new WebInspector.CSSSelectorProfileType());
this._registerProfileType(new WebInspector.HeapSnapshotProfileType());
this._registerProfileType(new WebInspector.TrackingHeapSnapshotProfileType(this));
if (!WebInspector.WorkerManager.isWorkerFrontend() && WebInspector.experimentsSettings.canvasInspection.isEnabled())
@@ -1354,20 +1352,6 @@ WebInspector.CPUProfilerPanel.prototype = {
* @constructor
* @extends {WebInspector.ProfilesPanel}
*/
-WebInspector.CSSSelectorProfilerPanel = function()
-{
- WebInspector.ProfilesPanel.call(this, "css-profiler", new WebInspector.CSSSelectorProfileType());
-}
-
-WebInspector.CSSSelectorProfilerPanel.prototype = {
- __proto__: WebInspector.ProfilesPanel.prototype
-}
-
-
-/**
- * @constructor
- * @extends {WebInspector.ProfilesPanel}
- */
WebInspector.HeapProfilerPanel = function()
{
var heapSnapshotProfileType = new WebInspector.HeapSnapshotProfileType();
@@ -1405,7 +1389,6 @@ WebInspector.CanvasProfilerPanel.prototype = {
importScript("ProfileDataGridTree.js");
importScript("BottomUpProfileDataGridTree.js");
importScript("CPUProfileView.js");
-importScript("CSSSelectorProfileView.js");
importScript("FlameChart.js");
importScript("HeapSnapshot.js");
importScript("HeapSnapshotDataGrids.js");
« no previous file with comments | « Source/devtools/front_end/CSSSelectorProfileView.js ('k') | Source/devtools/protocol.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698