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

Unified Diff: Source/web/WebViewImpl.h

Issue 1301033002: Plumb CompositedDisplayList to WebViewImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase from space, also minor cleanups Created 5 years, 4 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: Source/web/WebViewImpl.h
diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h
index 85d2741d0bf2fb862c8b970e8c7b0404972180a0..c56f30f4afd3817740282e75a070c7f70bf87ec4 100644
--- a/Source/web/WebViewImpl.h
+++ b/Source/web/WebViewImpl.h
@@ -271,6 +271,9 @@ public:
void setShowScrollBottleneckRects(bool) override;
void acceptLanguagesChanged() override;
+ void setCompositedDisplayList(WebCompositedDisplayList*) override;
+ WebCompositedDisplayList* compositedDisplayList() override;
+
// WebViewImpl
void enableViewport();
void disableViewport();
@@ -740,6 +743,8 @@ private:
bool m_recreatingGraphicsContext;
static const WebInputEvent* m_currentInputEvent;
+ OwnPtr<WebCompositedDisplayList> m_compositedDisplayList;
jbroman 2015/08/19 18:33:50 Nit: we could consider making WebCompositedDisplay
pdr. 2015/08/20 04:01:55 This worked out nicely since it moves the WebCDL <
+
MediaKeysClientImpl m_mediaKeysClientImpl;
OwnPtr<WebActiveGestureAnimation> m_gestureAnimation;
WebPoint m_positionOnFlingStart;

Powered by Google App Engine
This is Rietveld 408576698