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

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

Issue 1115923002: workers: Rename WorkerThread to WorkerScript. Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 7 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebThreadSupportingGC_h 5 #ifndef WebThreadSupportingGC_h
6 #define WebThreadSupportingGC_h 6 #define WebThreadSupportingGC_h
7 7
8 #include "platform/heap/glue/MessageLoopInterruptor.h" 8 #include "platform/heap/glue/MessageLoopInterruptor.h"
9 #include "platform/heap/glue/PendingGCRunner.h" 9 #include "platform/heap/glue/PendingGCRunner.h"
10 #include "public/platform/Platform.h" 10 #include "public/platform/Platform.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 return *m_thread; 61 return *m_thread;
62 } 62 }
63 63
64 private: 64 private:
65 explicit WebThreadSupportingGC(const char*); 65 explicit WebThreadSupportingGC(const char*);
66 66
67 OwnPtr<PendingGCRunner> m_pendingGCRunner; 67 OwnPtr<PendingGCRunner> m_pendingGCRunner;
68 OwnPtr<MessageLoopInterruptor> m_messageLoopInterruptor; 68 OwnPtr<MessageLoopInterruptor> m_messageLoopInterruptor;
69 69
70 // FIXME: This has to be last because of crbug.com/401397. 70 // FIXME: This has to be last because of crbug.com/401397.
71 // A WorkerThread might get deleted before it had a chance to properly 71 // A WorkerScript might get deleted before it had a chance to properly
72 // shut down. By deleting the WebThread first, we can guarantee that 72 // shut down. By deleting the WebThread first, we can guarantee that
73 // no pending tasks on the thread might want to access any of the other 73 // no pending tasks on the thread might want to access any of the other
74 // members during the WorkerThread's destruction. 74 // members during the WorkerScript's destruction.
75 OwnPtr<WebThread> m_thread; 75 OwnPtr<WebThread> m_thread;
76 }; 76 };
77 77
78 } 78 }
79 79
80 #endif 80 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698