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

Unified Diff: public/platform/WebLayer.h

Issue 784453003: Initial scroll-blocks-on compositor integration (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Eliminate scrollbars from iframe test for cross-platform output consistency Created 5 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
« no previous file with comments | « Source/platform/graphics/GraphicsLayerClient.h ('k') | public/platform/WebScrollBlocksOn.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebLayer.h
diff --git a/public/platform/WebLayer.h b/public/platform/WebLayer.h
index 5d3bac1b7bda48f468b4aee6bb75af0019b6920b..74bf4978e4e0f83a0095f5f457519a45f76952b6 100644
--- a/public/platform/WebLayer.h
+++ b/public/platform/WebLayer.h
@@ -34,6 +34,7 @@
#include "WebFloatPoint3D.h"
#include "WebPoint.h"
#include "WebRect.h"
+#include "WebScrollBlocksOn.h"
#include "WebSize.h"
#include "WebString.h"
#include "WebVector.h"
@@ -186,6 +187,10 @@ public:
virtual void setTouchEventHandlerRegion(const WebVector<WebRect>&) = 0;
virtual WebVector<WebRect> touchEventHandlerRegion() const = 0;
+ // FIXME: Make pure once cc is updated. crbug.com/347272
Nico 2015/07/28 19:22:44 can this be done now?
+ virtual void setScrollBlocksOn(WebScrollBlocksOn) { };
+ virtual WebScrollBlocksOn scrollBlocksOn() const { return WebScrollBlocksOnNone;};
+
virtual void setIsContainerForFixedPositionLayers(bool) = 0;
virtual bool isContainerForFixedPositionLayers() const = 0;
« no previous file with comments | « Source/platform/graphics/GraphicsLayerClient.h ('k') | public/platform/WebScrollBlocksOn.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698