| 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
|
|
|