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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetBase.h

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/web/WebFrameWidgetBase.h
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetBase.h b/third_party/WebKit/Source/web/WebFrameWidgetBase.h
index 4d0e84d79177a3881b8eff40406212565a94b29c..dd9024904c6301e6ad8660f98e71897a51987c5f 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetBase.h
+++ b/third_party/WebKit/Source/web/WebFrameWidgetBase.h
@@ -6,14 +6,16 @@
#define WebFrameWidgetBase_h
#include "core/clipboard/DataObject.h"
+
#include "public/platform/WebDragData.h"
#include "public/web/WebFrameWidget.h"
#include "wtf/Assertions.h"
namespace blink {
+class AnimationWorkletProxyClient;
class CompositorAnimationHost;
-class CompositorProxyClient;
+class CompositorWorkerProxyClient;
class GraphicsLayer;
class WebImage;
class WebLayer;
@@ -26,7 +28,8 @@ class WebFrameWidgetBase : public WebFrameWidget {
public:
virtual bool forSubframe() const = 0;
virtual void scheduleAnimation() = 0;
- virtual CompositorProxyClient* createCompositorProxyClient() = 0;
+ virtual CompositorWorkerProxyClient* createCompositorWorkerProxyClient() = 0;
+ virtual AnimationWorkletProxyClient* createAnimationWorkletProxyClient() = 0;
virtual WebWidgetClient* client() const = 0;
// Sets the root graphics layer. |GraphicsLayer| can be null when detaching
« no previous file with comments | « third_party/WebKit/Source/web/CompositorWorkerProxyClientImpl.cpp ('k') | third_party/WebKit/Source/web/WebFrameWidgetImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698