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

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

Issue 2539443004: Worker: Move ParentFrameTaskRunners from WorkerReportingProxy to ObjectProxy (Closed)
Patch Set: rebase Created 3 years, 10 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 2016 The Chromium Authors. All rights reserved. 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 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 AnimationWorkletThread_h 5 #ifndef AnimationWorkletThread_h
6 #define AnimationWorkletThread_h 6 #define AnimationWorkletThread_h
7 7
8 #include "modules/ModulesExport.h" 8 #include "modules/ModulesExport.h"
9 #include "modules/compositorworker/AbstractAnimationWorkletThread.h" 9 #include "modules/compositorworker/AbstractAnimationWorkletThread.h"
10 #include <memory> 10 #include <memory>
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class WorkerReportingProxy; 14 class WorkerReportingProxy;
15 15
16 class MODULES_EXPORT AnimationWorkletThread final 16 class MODULES_EXPORT AnimationWorkletThread final
17 : public AbstractAnimationWorkletThread { 17 : public AbstractAnimationWorkletThread {
18 public: 18 public:
19 static std::unique_ptr<AnimationWorkletThread> create( 19 static std::unique_ptr<AnimationWorkletThread> create(
20 PassRefPtr<WorkerLoaderProxy>, 20 PassRefPtr<WorkerLoaderProxy>,
21 WorkerReportingProxy&); 21 WorkerReportingProxy&,
22 ParentFrameTaskRunners*);
22 ~AnimationWorkletThread() override; 23 ~AnimationWorkletThread() override;
23 24
24 protected: 25 protected:
25 WorkerOrWorkletGlobalScope* createWorkerGlobalScope( 26 WorkerOrWorkletGlobalScope* createWorkerGlobalScope(
26 std::unique_ptr<WorkerThreadStartupData>) final; 27 std::unique_ptr<WorkerThreadStartupData>) final;
27 28
28 private: 29 private:
29 AnimationWorkletThread(PassRefPtr<WorkerLoaderProxy>, WorkerReportingProxy&); 30 AnimationWorkletThread(PassRefPtr<WorkerLoaderProxy>,
31 WorkerReportingProxy&,
32 ParentFrameTaskRunners*);
30 }; 33 };
31 34
32 } // namespace blink 35 } // namespace blink
33 36
34 #endif // AnimationWorkletThread_h 37 #endif // AnimationWorkletThread_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698