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

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: Export CompositorAnimator Created 3 years, 11 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..40096cfafb7f8f790ff0ec4f1f5a6fea62a58e06 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetBase.h
+++ b/third_party/WebKit/Source/web/WebFrameWidgetBase.h
@@ -6,6 +6,8 @@
#define WebFrameWidgetBase_h
#include "core/clipboard/DataObject.h"
+#include "core/dom/CompositorProxyClient.h"
+
#include "public/platform/WebDragData.h"
#include "public/web/WebFrameWidget.h"
#include "wtf/Assertions.h"
@@ -13,7 +15,6 @@
namespace blink {
class CompositorAnimationHost;
-class CompositorProxyClient;
class GraphicsLayer;
class WebImage;
class WebLayer;
@@ -26,7 +27,8 @@ class WebFrameWidgetBase : public WebFrameWidget {
public:
virtual bool forSubframe() const = 0;
virtual void scheduleAnimation() = 0;
- virtual CompositorProxyClient* createCompositorProxyClient() = 0;
+ virtual CompositorProxyClient* createCompositorProxyClient(
+ CompositorProxyClient::Type) = 0;
virtual WebWidgetClient* client() const = 0;
// Sets the root graphics layer. |GraphicsLayer| can be null when detaching

Powered by Google App Engine
This is Rietveld 408576698