Reviewers: Mikhail Naganov (Chromium), Yury Semikhatsky, alexeif,

Description:
Remove obsolete method declarations from HeapEntry class.

BUG=none
TEST=none

Please review this at https://chromiumcodereview.appspot.com/10892033/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M include/v8-profiler.h


Index: include/v8-profiler.h
diff --git a/include/v8-profiler.h b/include/v8-profiler.h
index 2dcbb68d905ab67dcb7cb19b20b1697e77e7e16b..c1e9a9e0b8337a1dece27dd923bc9616c24d4826 100644
--- a/include/v8-profiler.h
+++ b/include/v8-profiler.h
@@ -281,32 +281,12 @@ class V8EXPORT HeapGraphNode {
   /** Returns node's own size, in bytes. */
   int GetSelfSize() const;

-  /**
-   * Returns node's retained size, in bytes. That is, self + sizes of
-   * the objects that are reachable only from this object. In other
-   * words, the size of memory that will be reclaimed having this node
-   * collected.
-   */
-  int GetRetainedSize() const;
-
   /** Returns child nodes count of the node. */
   int GetChildrenCount() const;

   /** Retrieves a child by index. */
   const HeapGraphEdge* GetChild(int index) const;

-  /** Returns retainer nodes count of the node. */
-  int GetRetainersCount() const;
-
-  /** Returns a retainer by index. */
-  const HeapGraphEdge* GetRetainer(int index) const;
-
-  /**
-   * Returns a dominator node. This is the node that participates in every
-   * path from the snapshot root to the current node.
-   */
-  const HeapGraphNode* GetDominatorNode() const;
-
   /**
    * Finds and returns a value from the heap corresponding to this node,
    * if the value is still reachable.


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to