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

Unified Diff: cc/layers/scrollbar_layer_interface.h

Issue 23983047: Pinch/Zoom Infrastructure & Plumbing CL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Draft for review. Created 7 years, 1 month 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: cc/layers/scrollbar_layer_interface.h
diff --git a/cc/layers/scrollbar_layer_interface.h b/cc/layers/scrollbar_layer_interface.h
index bbb0da6ae2b33c2c15c7e9d7f4de6d23e30f4bb7..3a6696312bb484cb0868daf6fe76f9bfbffdd2c6 100644
--- a/cc/layers/scrollbar_layer_interface.h
+++ b/cc/layers/scrollbar_layer_interface.h
@@ -10,10 +10,15 @@
namespace cc {
+class Layer;
+class LayerImpl;
+
class CC_EXPORT ScrollbarLayerInterface {
public:
virtual int ScrollLayerId() const = 0;
- virtual void SetScrollLayerId(int id) = 0;
+ virtual void SetScrollLayer(scoped_refptr<Layer> layer) = 0;
+ virtual void SetClipLayer(scoped_refptr<Layer> layer) = 0;
+ virtual void PushScrollClipPropertiesTo(LayerImpl* layer) = 0;
virtual ScrollbarOrientation orientation() const = 0;

Powered by Google App Engine
This is Rietveld 408576698