| Index: third_party/WebKit/Source/core/dom/AnimationWorkletProxyClient.h
|
| diff --git a/third_party/WebKit/Source/core/dom/AnimationWorkletProxyClient.h b/third_party/WebKit/Source/core/dom/AnimationWorkletProxyClient.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dc01d797de86d2b680d80f767da4b50272628d3d
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/dom/AnimationWorkletProxyClient.h
|
| @@ -0,0 +1,24 @@
|
| +// 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 AnimationWorkletProxyClient_h
|
| +#define AnimationWorkletProxyClient_h
|
| +
|
| +#include "core/CoreExport.h"
|
| +#include "core/dom/CompositorProxyClient.h"
|
| +#include "wtf/Noncopyable.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class CORE_EXPORT AnimationWorkletProxyClient : public CompositorProxyClient {
|
| + WTF_MAKE_NONCOPYABLE(AnimationWorkletProxyClient);
|
| +
|
| + public:
|
| + AnimationWorkletProxyClient() {}
|
| + DEFINE_INLINE_VIRTUAL_TRACE() { CompositorProxyClient::trace(visitor); }
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // AnimationWorkletProxyClient_h
|
|
|