Chromium Code Reviews| Index: third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.h |
| diff --git a/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.h b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..040035070dc86ba9182497973c2bccade1033e53 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/compositorworker/AnimationWorkletMessagingProxy.h |
| @@ -0,0 +1,30 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef AnimationWorkletMessagingProxy_h |
| +#define AnimationWorkletMessagingProxy_h |
| + |
| +#include "core/workers/ThreadedWorkletMessagingProxy.h" |
| +#include "wtf/Allocator.h" |
| +#include <memory> |
| + |
| +namespace blink { |
| + |
| +class ExecutionContext; |
| +class WorkerThread; |
| + |
| +class AnimationWorkletMessagingProxy final : public ThreadedWorkletMessagingProxy { |
| + USING_FAST_MALLOC(AnimationWorkletMessagingProxy); |
| +public: |
| + AnimationWorkletMessagingProxy(ExecutionContext*); |
|
nhiroki
2016/09/12 03:37:06
explicit
ikilpatrick
2016/09/12 17:29:07
Done.
|
| + |
| +protected: |
| + ~AnimationWorkletMessagingProxy() override; |
| + |
| + std::unique_ptr<WorkerThread> createWorkerThread(double originTime) override; |
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // AnimationWorkletMessagingProxy_h |