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

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

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: Fix build file Created 4 years 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 CompositorWorkerGlobalScope_h 5 #ifndef CompositorWorkerGlobalScope_h
6 #define CompositorWorkerGlobalScope_h 6 #define CompositorWorkerGlobalScope_h
7 7
8 #include "core/dom/CompositorProxyClient.h" 8 #include "core/dom/CompositorWorkerProxyClient.h"
nhiroki 2016/11/24 06:59:00 Can we move this into .cpp?
majidvp 2016/11/28 14:43:21 Done.
9 #include "core/dom/FrameRequestCallbackCollection.h" 9 #include "core/dom/FrameRequestCallbackCollection.h"
10 #include "core/dom/MessagePort.h" 10 #include "core/dom/MessagePort.h"
11 #include "core/workers/WorkerGlobalScope.h" 11 #include "core/workers/WorkerGlobalScope.h"
12 #include "modules/ModulesExport.h" 12 #include "modules/ModulesExport.h"
13 #include <memory> 13 #include <memory>
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class CompositorWorkerThread; 17 class CompositorWorkerThread;
18 class InProcessWorkerObjectProxy; 18 class InProcessWorkerObjectProxy;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 60
61 InProcessWorkerObjectProxy& workerObjectProxy() const; 61 InProcessWorkerObjectProxy& workerObjectProxy() const;
62 62
63 bool m_executingAnimationFrameCallbacks; 63 bool m_executingAnimationFrameCallbacks;
64 FrameRequestCallbackCollection m_callbackCollection; 64 FrameRequestCallbackCollection m_callbackCollection;
65 }; 65 };
66 66
67 } // namespace blink 67 } // namespace blink
68 68
69 #endif // CompositorWorkerGlobalScope_h 69 #endif // CompositorWorkerGlobalScope_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698