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

Unified Diff: Source/devtools/front_end/profiler/HeapSnapshotProxy.js

Issue 352603003: DevTools: Nuke Dominators view from heap profiler. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline Created 6 years, 6 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
Index: Source/devtools/front_end/profiler/HeapSnapshotProxy.js
diff --git a/Source/devtools/front_end/profiler/HeapSnapshotProxy.js b/Source/devtools/front_end/profiler/HeapSnapshotProxy.js
index 109398a15a0d582cd7944812a17626626bf64bbf..30de98c6d25e5491e0ced1f3aff5beefcac3e4e6 100644
--- a/Source/devtools/front_end/profiler/HeapSnapshotProxy.js
+++ b/Source/devtools/front_end/profiler/HeapSnapshotProxy.js
@@ -336,11 +336,6 @@ WebInspector.HeapSnapshotProxy.prototype = {
this.callMethod(callback, "nodeClassName", snapshotObjectId);
},
- dominatorIdsForNode: function(nodeIndex, callback)
- {
- this.callMethod(callback, "dominatorIdsForNode", nodeIndex);
- },
-
/**
* @param {number} nodeIndex
* @return {!WebInspector.HeapSnapshotProviderProxy}
@@ -397,15 +392,6 @@ WebInspector.HeapSnapshotProxy.prototype = {
return this.callFactoryMethod(null, "createNodesProviderForClass", WebInspector.HeapSnapshotProviderProxy, className, nodeFilter);
},
- /**
- * @param {number} nodeIndex
- * @return {?WebInspector.HeapSnapshotProviderProxy}
- */
- createNodesProviderForDominator: function(nodeIndex)
- {
- return this.callFactoryMethod(null, "createNodesProviderForDominator", WebInspector.HeapSnapshotProviderProxy, nodeIndex);
- },
-
allocationTracesTops: function(callback)
{
this.callMethod(callback, "allocationTracesTops");
« no previous file with comments | « Source/devtools/front_end/profiler/HeapSnapshotGridNodes.js ('k') | Source/devtools/front_end/profiler/HeapSnapshotView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698