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

Unified Diff: third_party/WebKit/Source/core/dom/CompositorProxyClient.cpp

Issue 2515363002: Introduce AnimationWorkletProxyClient and necessary plumbing to get it in worklet messaging proxy. (Closed)
Patch Set: Remove unnecessary PLATFORM_EXPORT Created 3 years, 10 months 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/CompositorProxyClient.cpp
diff --git a/third_party/WebKit/Source/core/dom/CompositorProxyClient.cpp b/third_party/WebKit/Source/core/dom/CompositorProxyClient.cpp
deleted file mode 100644
index e9209a9c3f787eddf3956c2513fd9946298f2488..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/dom/CompositorProxyClient.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-// 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.
-
-#include "core/dom/CompositorProxyClient.h"
-
-#include "platform/instrumentation/tracing/TraceEvent.h"
-
-namespace blink {
-
-CompositorProxyClient* CompositorProxyClient::from(WorkerClients* clients) {
- return static_cast<CompositorProxyClient*>(
- Supplement<WorkerClients>::from(clients, supplementName()));
-}
-
-const char* CompositorProxyClient::supplementName() {
- return "CompositorProxyClient";
-}
-
-void provideCompositorProxyClientTo(WorkerClients* clients,
- CompositorProxyClient* client) {
- clients->provideSupplement(CompositorProxyClient::supplementName(), client);
-}
-
-} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698