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

Unified Diff: third_party/WebKit/public/web/WebFrameWidget.h

Issue 2036403002: Always use the WebFrameWidget when attaching the root graphics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/public/web/WebFrameWidget.h
diff --git a/third_party/WebKit/public/web/WebFrameWidget.h b/third_party/WebKit/public/web/WebFrameWidget.h
index d856c943f88e1c4a7d22b767b74269065fbd79e4..dbae7ca4eaca0d30c5cfef94da18e84be897a87d 100644
--- a/third_party/WebKit/public/web/WebFrameWidget.h
+++ b/third_party/WebKit/public/web/WebFrameWidget.h
@@ -37,7 +37,9 @@
namespace blink {
+class CompositorAnimationTimeline;
class CompositorProxyClient;
+class GraphicsLayer;
class WebLocalFrame;
class WebView;
class WebWidgetClient;
@@ -79,6 +81,9 @@ public:
virtual void scheduleAnimation() = 0;
virtual CompositorProxyClient* createCompositorProxyClient() = 0;
virtual WebWidgetClient* client() const = 0;
+ virtual void setRootGraphicsLayer(GraphicsLayer*) = 0;
+ virtual void attachCompositorAnimationTimeline(CompositorAnimationTimeline*) = 0;
+ virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*) = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698