Index: third_party/WebKit/Source/platform/heap/ThreadState.h |
diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.h b/third_party/WebKit/Source/platform/heap/ThreadState.h |
index 9bcef40fe0ab6da5e96b0bc08bdcff9385ffb2f2..b0ac9f76bc0828dcbdb89d5d5a7cad54e666b1da 100644 |
--- a/third_party/WebKit/Source/platform/heap/ThreadState.h |
+++ b/third_party/WebKit/Source/platform/heap/ThreadState.h |
@@ -576,6 +576,10 @@ public: |
void allocationPointAdjusted(int heapIndex); |
void promptlyFreed(size_t gcInfoIndex); |
+#if OS(WIN) && COMPILER(MSVC) |
+ size_t threadStackSize(); |
+#endif |
+ |
private: |
enum SnapshotType { |
HeapSnapshot, |
@@ -683,8 +687,12 @@ private: |
ThreadIdentifier m_thread; |
OwnPtr<PersistentRegion> m_persistentRegion; |
BlinkGC::StackState m_stackState; |
+#if OS(WIN) && COMPILER(MSVC) |
+ size_t m_threadStackSize; |
+#endif |
intptr_t* m_startOfStack; |
intptr_t* m_endOfStack; |
+ |
void* m_safePointScopeMarker; |
Vector<Address> m_safePointStackCopy; |
bool m_atSafePoint; |