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

Unified Diff: src/heap/heap.h

Issue 1386863002: Revert "[heap] No leakage of mark-compact.h outside of heap." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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/heap/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/heap.h
diff --git a/src/heap/heap.h b/src/heap/heap.h
index 536867126738b38d2c1afefc2fe9b32bdb018b72..996af169a0f003030e8191e776a193706124f4ff 100644
--- a/src/heap/heap.h
+++ b/src/heap/heap.h
@@ -14,7 +14,8 @@
#include "src/assert-scope.h"
#include "src/atomic-utils.h"
#include "src/globals.h"
-// TODO(mstarzinger): Two more includes to kill!
+// TODO(mstarzinger): Three more includes to kill!
+#include "src/heap/mark-compact.h"
#include "src/heap/spaces.h"
#include "src/heap/store-buffer.h"
#include "src/list.h"
@@ -1099,7 +1100,7 @@ class Heap {
inline Isolate* isolate();
MarkCompactCollector* mark_compact_collector() {
- return mark_compact_collector_;
+ return &mark_compact_collector_;
}
// ===========================================================================
@@ -2261,7 +2262,7 @@ class Heap {
Scavenger* scavenge_collector_;
- MarkCompactCollector* mark_compact_collector_;
+ MarkCompactCollector mark_compact_collector_;
StoreBuffer store_buffer_;
« no previous file with comments | « no previous file | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698