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

Unified Diff: include/v8-profiler.h

Issue 166383002: Allow self_size to be larger than 2GB in heap snapshots. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added casts Created 6 years, 10 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 | « no previous file | src/api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8-profiler.h
diff --git a/include/v8-profiler.h b/include/v8-profiler.h
index 46752e968dcf1ad4c487d4246ebd385f91255539..59c2d5dacdb13eb390cd6e266957398336a5d553 100644
--- a/include/v8-profiler.h
+++ b/include/v8-profiler.h
@@ -257,7 +257,11 @@ class V8_EXPORT HeapGraphNode {
SnapshotObjectId GetId() const;
/** Returns node's own size, in bytes. */
- int GetSelfSize() const;
+ V8_DEPRECATED("Use GetShallowSize instead",
+ int GetSelfSize() const);
+
+ /** Returns node's own size, in bytes. */
+ size_t GetShallowSize() const;
/** Returns child nodes count of the node. */
int GetChildrenCount() const;
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698