| 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..2a3a9051bab0ee6e4753a856b9a209fba9762095
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/dom/AnimationWorkletProxyClient.h
|
| @@ -0,0 +1,23 @@
|
| +// 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() {}
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // AnimationWorkletProxyClient_h
|
|
|