Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef AnimationWorkletProxyClient_h | |
| 6 #define AnimationWorkletProxyClient_h | |
| 7 | |
| 8 #include "core/CoreExport.h" | |
| 9 #include "core/dom/CompositorProxyClient.h" | |
| 10 #include "wtf/Noncopyable.h" | |
| 11 | |
| 12 namespace blink { | |
| 13 | |
| 14 class CORE_EXPORT AnimationWorkletProxyClient : public CompositorProxyClient { | |
| 15 WTF_MAKE_NONCOPYABLE(AnimationWorkletProxyClient); | |
| 16 | |
| 17 public: | |
| 18 AnimationWorkletProxyClient() {} | |
| 19 DEFINE_INLINE_VIRTUAL_TRACE() { CompositorProxyClient::trace(visitor); } | |
| 20 }; | |
| 21 | |
| 22 } // namespace blink | |
| 23 | |
| 24 #endif // AnimationWorkerProxyClient_h | |
|
nhiroki
2016/11/24 06:59:00
AnimationWorkletProxyClient_h
majidvp
2016/11/28 14:43:21
Done.
| |
| OLD | NEW |