Profiler cleanup: removed another piece that is only needed for DevTools profiler.

Review URL: http://codereview.chromium.org/118229


git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2101 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
mikhail.naganov@gmail.com 2009-06-04 09:20:27 +00:00
parent d1f466cce3
commit ba09fb12aa

View File

@ -109,19 +109,13 @@ devtools.profiler.ViewBuilder.prototype.createViewNode = function(
/**
* Creates a Profile View object. It allows to perform sorting
* and filtering actions on the profile. Profile View mimicks
* the Profile object from WebKit's JSC profiler.
* and filtering actions on the profile.
*
* @param {devtools.profiler.ProfileView.Node} head Head (root) node.
* @constructor
*/
devtools.profiler.ProfileView = function(head) {
this.head = head;
this.title = '';
this.uid = '';
this.heavyProfile = null;
this.treeProfile = null;
this.flatProfile = null;
};