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

Side by Side Diff: third_party/WebKit/Source/modules/serviceworkers/IsolatedWorkerThread.h

Issue 2118243002: [proof-of-concept] SW thread independent of the main thread Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 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
(Empty)
1 // Copyright 2016 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 #ifndef IsolatedWorkerThread_h
6 #define IsolatedWorkerThread_h
7
8 #include "core/workers/WorkerThread.h"
9
10 namespace blink {
11
12 class WorkerBackingThread;
13
14 class IsolatedWorkerThread final : public WorkerThread {
15 public:
16 static std::unique_ptr<IsolatedWorkerThread> create(PassRefPtr<WorkerLoaderP roxy>, WorkerReportingProxy&);
17 ~IsolatedWorkerThread() override;
18
19 WorkerBackingThread& workerBackingThread() override { return *m_workerBackin gThread; }
20
21 protected:
22 void clearWorkerBackingThread() override;
23 WorkerOrWorkletGlobalScope* createWorkerGlobalScope(std::unique_ptr<WorkerTh readStartupData>) override;
24
25 private:
26 IsolatedWorkerThread(PassRefPtr<WorkerLoaderProxy>, WorkerReportingProxy&);
27 std::unique_ptr<WorkerBackingThread> m_workerBackingThread;
28 };
29
30 } // namespace blink
31
32 #endif // IsolatedWorkerThread_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698