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

Unified Diff: sky/engine/platform/heap/ThreadState.h

Issue 683593002: Remove GarbageCollected support from the bindings (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 | « sky/engine/platform/heap/Handle.cpp ('k') | sky/engine/platform/heap/ThreadState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/platform/heap/ThreadState.h
diff --git a/sky/engine/platform/heap/ThreadState.h b/sky/engine/platform/heap/ThreadState.h
index 441f82fc883fc30044521455571a6599cfbb1cb2..63118f92f6b6d39a59cfff14dc4d631811c09652 100644
--- a/sky/engine/platform/heap/ThreadState.h
+++ b/sky/engine/platform/heap/ThreadState.h
@@ -56,7 +56,6 @@ class HeapContainsCache;
class HeapObjectHeader;
class PageMemory;
class PersistentNode;
-class WrapperPersistentRegion;
class Visitor;
class SafePointBarrier;
class SafePointAwareMutexLocker;
@@ -539,14 +538,6 @@ public:
BaseHeapPage* contains(void* pointer) { return contains(reinterpret_cast<Address>(pointer)); }
BaseHeapPage* contains(const void* pointer) { return contains(const_cast<void*>(pointer)); }
- WrapperPersistentRegion* wrapperRoots() const
- {
- ASSERT(m_liveWrapperPersistents);
- return m_liveWrapperPersistents;
- }
- WrapperPersistentRegion* takeWrapperPersistentRegion();
- void freeWrapperPersistentRegion(WrapperPersistentRegion*);
-
// List of persistent roots allocated on the given thread.
PersistentNode* roots() const { return m_persistents.get(); }
@@ -671,9 +662,6 @@ private:
static uint8_t s_mainThreadStateStorage[];
ThreadIdentifier m_thread;
- WrapperPersistentRegion* m_liveWrapperPersistents;
- WrapperPersistentRegion* m_pooledWrapperPersistents;
- size_t m_pooledWrapperPersistentRegionCount;
OwnPtr<PersistentNode> m_persistents;
StackState m_stackState;
intptr_t* m_startOfStack;
« no previous file with comments | « sky/engine/platform/heap/Handle.cpp ('k') | sky/engine/platform/heap/ThreadState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698