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

Unified Diff: src/profiler/heap-snapshot-generator.h

Issue 1474353002: Remove easy to remove calls to Isolate::Current() from api.cc (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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: src/profiler/heap-snapshot-generator.h
diff --git a/src/profiler/heap-snapshot-generator.h b/src/profiler/heap-snapshot-generator.h
index 865dd56ad173e8bfe63cb912b8991164ccc16842..b53fa9bab39788ff399692ab6b1719b06e929b78 100644
--- a/src/profiler/heap-snapshot-generator.h
+++ b/src/profiler/heap-snapshot-generator.h
@@ -49,9 +49,9 @@ class HeapGraphEdge BASE_EMBEDDED {
}
INLINE(HeapEntry* from() const);
HeapEntry* to() const { return to_entry_; }
+ INLINE(HeapSnapshot* snapshot() const);
vogelheim 2015/11/27 16:06:15 Not sure if worthwhile, but I think you're exposin
private:
- INLINE(HeapSnapshot* snapshot() const);
int from_index() const { return FromIndexField::decode(bit_field_); }
class TypeField : public BitField<Type, 0, 3> {};

Powered by Google App Engine
This is Rietveld 408576698