Chromium Code Reviews| 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..289cd594b72f868f2ec632fed0ff3b68b5f1cf2e |
| --- /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 // AnimationWorkerProxyClient_h |
|
nhiroki
2016/11/24 06:59:00
AnimationWorkletProxyClient_h
majidvp
2016/11/28 14:43:21
Done.
|