Chromium Code Reviews| 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 ed066d6f421beffe4863ff7dc50d00fcfe2679e2..53870d920946cb4933f20932cb279b9c2eb9ebd3 100644 |
| --- a/third_party/WebKit/Source/platform/heap/ThreadState.h |
| +++ b/third_party/WebKit/Source/platform/heap/ThreadState.h |
| @@ -190,6 +190,7 @@ public: |
| static void attachMainThread(); |
| static void detachMainThread(); |
| + void stopMainThread(); |
| // Trace all persistent roots, called when marking the managed heap objects. |
| static void visitPersistentRoots(Visitor*); |
| @@ -430,11 +431,6 @@ public: |
| m_isolate = isolate; |
| m_traceDOMWrappers = traceDOMWrappers; |
| } |
| - void unregisterTraceDOMWrappers() |
|
haraken
2016/03/10 05:42:23
Previously I mentioned that we need to clear m_tra
|
| - { |
| - m_isolate = nullptr; |
| - m_traceDOMWrappers = nullptr; |
| - } |
| // By entering a gc-forbidden scope, conservative GCs will not |
| // be allowed while handling an out-of-line allocation request. |