summaryrefslogtreecommitdiff
path: root/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-05-07 11:21:11 +0200
committerSimon Hausmann <simon.hausmann@nokia.com>2012-05-07 11:21:11 +0200
commit2cf6c8816a73e0132bd8fa3b509d62d7c51b6e47 (patch)
tree988e8c5b116dd0466244ae2fe5af8ee9be926d76 /Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h
parentdd91e772430dc294e3bf478c119ef8d43c0a3358 (diff)
downloadqtwebkit-2cf6c8816a73e0132bd8fa3b509d62d7c51b6e47.tar.gz
Imported WebKit commit 7e538425aa020340619e927792f3d895061fb54b (http://svn.webkit.org/repository/webkit/trunk@116286)
Diffstat (limited to 'Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h')
-rw-r--r--Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h b/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h
index 6f336a5cd..e503c2371 100644
--- a/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h
+++ b/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h
@@ -26,6 +26,7 @@
#ifndef LayerTreeHost_h
#define LayerTreeHost_h
+#include "LayerTreeContext.h"
#include <wtf/PassRefPtr.h>
#include <wtf/RefCounted.h>
@@ -44,7 +45,6 @@ class GraphicsLayer;
namespace WebKit {
-class LayerTreeContext;
class UpdateInfo;
class WebPage;
@@ -75,13 +75,14 @@ public:
virtual void didInstallPageOverlay() = 0;
virtual void didUninstallPageOverlay() = 0;
virtual void setPageOverlayNeedsDisplay(const WebCore::IntRect&) = 0;
+ virtual void setPageOverlayOpacity(float) { }
+ virtual bool pageOverlayShouldApplyFadeWhenPainting() const { return true; }
virtual void pauseRendering() { }
virtual void resumeRendering() { }
-#if USE(TILED_BACKING_STORE)
- virtual void setVisibleContentsRectForScaling(const WebCore::IntRect&, float scale) { }
- virtual void setVisibleContentsRectForPanning(const WebCore::IntRect&, const WebCore::FloatPoint&) { }
+#if USE(UI_SIDE_COMPOSITING)
+ virtual void setVisibleContentsRect(const WebCore::IntRect&, float scale, const WebCore::FloatPoint&) { }
virtual void setVisibleContentsRectForLayer(int layerID, const WebCore::IntRect&) { }
virtual void renderNextFrame() { }
virtual void purgeBackingStores() { }
@@ -92,13 +93,16 @@ public:
virtual void scheduleChildWindowGeometryUpdate(const WindowGeometry&) = 0;
#endif
+#if PLATFORM(MAC)
+ virtual void setLayerHostingMode(LayerHostingMode) { }
+#endif
+
protected:
explicit LayerTreeHost(WebPage*);
WebPage* m_webPage;
-
-#if USE(TILED_BACKING_STORE)
+#if USE(UI_SIDE_COMPOSITING)
bool m_waitingForUIProcess;
#endif
};