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

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: Final checklist: cleanup ordering in WebCompositedDisplayList 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
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebViewImpl.h
diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h
index 85d2741d0bf2fb862c8b970e8c7b0404972180a0..e56de8ece9a0011c033e6f9a4b0be05404737838 100644
--- a/Source/web/WebViewImpl.h
+++ b/Source/web/WebViewImpl.h
@@ -35,8 +35,10 @@
#include "core/page/EventWithHitTestResults.h"
#include "platform/geometry/IntPoint.h"
#include "platform/geometry/IntRect.h"
+#include "platform/graphics/CompositedDisplayList.h"
#include "platform/graphics/GraphicsLayer.h"
#include "platform/heap/Handle.h"
+#include "public/platform/WebCompositedDisplayList.h"
#include "public/platform/WebCompositorAnimationTimeline.h"
#include "public/platform/WebDisplayMode.h"
#include "public/platform/WebFloatSize.h"
@@ -271,6 +273,9 @@ public:
void setShowScrollBottleneckRects(bool) override;
void acceptLanguagesChanged() override;
+ void setCompositedDisplayList(PassOwnPtr<CompositedDisplayList>);
+ WebCompositedDisplayList* compositedDisplayList() override;
+
// WebViewImpl
void enableViewport();
void disableViewport();
@@ -740,6 +745,8 @@ private:
bool m_recreatingGraphicsContext;
static const WebInputEvent* m_currentInputEvent;
+ WebCompositedDisplayList m_compositedDisplayList;
+
MediaKeysClientImpl m_mediaKeysClientImpl;
OwnPtr<WebActiveGestureAnimation> m_gestureAnimation;
WebPoint m_positionOnFlingStart;
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698