summaryrefslogtreecommitdiff
path: root/deps/v8/src/heap/code-stats.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/heap/code-stats.h')
-rw-r--r--deps/v8/src/heap/code-stats.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/deps/v8/src/heap/code-stats.h b/deps/v8/src/heap/code-stats.h
index ef964caa85..cc28640f2a 100644
--- a/deps/v8/src/heap/code-stats.h
+++ b/deps/v8/src/heap/code-stats.h
@@ -8,11 +8,11 @@
namespace v8 {
namespace internal {
-class Isolate;
+class CodeCommentsIterator;
class HeapObject;
+class Isolate;
class LargeObjectSpace;
class PagedSpace;
-class RelocIterator;
class CodeStatistics {
public:
@@ -31,12 +31,13 @@ class CodeStatistics {
#endif
private:
- static void RecordCodeAndMetadataStatistics(HeapObject* object,
+ static void RecordCodeAndMetadataStatistics(HeapObject object,
Isolate* isolate);
#ifdef DEBUG
- static void CollectCommentStatistics(Isolate* isolate, RelocIterator* it);
- static void CollectCodeCommentStatistics(HeapObject* obj, Isolate* isolate);
+ static void CollectCommentStatistics(Isolate* isolate,
+ CodeCommentsIterator* it);
+ static void CollectCodeCommentStatistics(HeapObject obj, Isolate* isolate);
static void EnterComment(Isolate* isolate, const char* comment, int delta);
static void ResetCodeStatistics(Isolate* isolate);
#endif