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

Side by Side Diff: third_party/WebKit/Source/modules/compositorworker/CompositorWorkerThread.h

Issue 1955693003: compositor-worker: Keep worker backing thread alive for the lifetime of the compositor thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use the constructed WorkerBackingThread to post tasks. Created 4 years, 6 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 CompositorWorkerThread_h 5 #ifndef CompositorWorkerThread_h
6 #define CompositorWorkerThread_h 6 #define CompositorWorkerThread_h
7 7
8 #include "core/workers/WorkerThread.h" 8 #include "core/workers/WorkerThread.h"
9 #include "modules/ModulesExport.h" 9 #include "modules/ModulesExport.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class InProcessWorkerObjectProxy; 13 class InProcessWorkerObjectProxy;
14 14
15 // This class is overridden in unit-tests. 15 // This class is overridden in unit-tests.
16 class MODULES_EXPORT CompositorWorkerThread final : public WorkerThread { 16 class MODULES_EXPORT CompositorWorkerThread final : public WorkerThread {
17 public: 17 public:
18 static PassOwnPtr<CompositorWorkerThread> create(PassRefPtr<WorkerLoaderProx y>, InProcessWorkerObjectProxy&, double timeOrigin); 18 static PassOwnPtr<CompositorWorkerThread> create(PassRefPtr<WorkerLoaderProx y>, InProcessWorkerObjectProxy&, double timeOrigin);
19 ~CompositorWorkerThread() override; 19 ~CompositorWorkerThread() override;
20 20
21 InProcessWorkerObjectProxy& workerObjectProxy() const { return m_workerObjec tProxy; } 21 InProcessWorkerObjectProxy& workerObjectProxy() const { return m_workerObjec tProxy; }
22 WorkerBackingThread& workerBackingThread() override; 22 WorkerBackingThread& workerBackingThread() override;
23 bool shouldAttachThreadDebugger() const override { return false; } 23 bool shouldAttachThreadDebugger() const override { return false; }
24 24
25 static void resetSharedBackingThreadForTest(); 25 static void ensureSharedBackingThread();
26 static void createSharedBackingThreadForTest();
27
28 // This is called before CoreInitializer::shutdown as shutdown waits for
29 // worker threads that can be blocked by scripts.
30 static void terminateExecution();
31 static void clearSharedBackingThread();
26 32
27 protected: 33 protected:
28 CompositorWorkerThread(PassRefPtr<WorkerLoaderProxy>, InProcessWorkerObjectP roxy&, double timeOrigin); 34 CompositorWorkerThread(PassRefPtr<WorkerLoaderProxy>, InProcessWorkerObjectP roxy&, double timeOrigin);
29 35
30 WorkerGlobalScope* createWorkerGlobalScope(PassOwnPtr<WorkerThreadStartupDat a>) override; 36 WorkerGlobalScope* createWorkerGlobalScope(PassOwnPtr<WorkerThreadStartupDat a>) override;
31 37
32 private: 38 private:
33 InProcessWorkerObjectProxy& m_workerObjectProxy; 39 InProcessWorkerObjectProxy& m_workerObjectProxy;
34 double m_timeOrigin; 40 double m_timeOrigin;
35 }; 41 };
36 42
37 } // namespace blink 43 } // namespace blink
38 44
39 #endif // CompositorWorkerThread_h 45 #endif // CompositorWorkerThread_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698