Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: third_party/WebKit/Source/core/dom/AnimationWorkletProxyClient.h

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: address feedback Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/BUILD.gn » ('j') | third_party/WebKit/Source/core/dom/CompositorProxyClient.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698