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

Side by Side Diff: Source/platform/WebThreadSupportingGC.cpp

Issue 469683002: Implement WebThreadSupportingGC, which wraps a WebThread attached to Oilpan's GC (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "config.h"
6 #include "platform/WebThreadSupportingGC.h"
7
8 namespace blink {
9
10 PassOwnPtr<WebThreadSupportingGC> WebThreadSupportingGC::create(const char* name )
11 {
12 return adoptPtr(new WebThreadSupportingGC(name));
13 }
14
15 WebThreadSupportingGC::WebThreadSupportingGC(const char* name)
16 : m_thread(adoptPtr(blink::Platform::current()->createThread(name)))
17 {
18 }
19
20 void WebThreadSupportingGC::attachGC()
21 {
22 m_pendingGCRunner = adoptPtr(new PendingGCRunner);
23 m_messageLoopInterruptor = adoptPtr(new MessageLoopInterruptor(&platformThre ad()));
24 platformThread().addTaskObserver(m_pendingGCRunner.get());
25 ThreadState::attach();
26 ThreadState::current()->addInterruptor(m_messageLoopInterruptor.get());
27 }
28
29 void WebThreadSupportingGC::detachGC()
30 {
31 ThreadState::current()->removeInterruptor(m_messageLoopInterruptor.get());
32 ThreadState::detach();
33 platformThread().removeTaskObserver(m_pendingGCRunner.get());
34 m_pendingGCRunner = nullptr;
35 m_messageLoopInterruptor = nullptr;
36 }
37
38 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698