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

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: Backup 2013.10.29 Created 7 years, 2 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: cc/layers/scrollbar_layer_interface.h
diff --git a/cc/layers/scrollbar_layer_interface.h b/cc/layers/scrollbar_layer_interface.h
index bbb0da6ae2b33c2c15c7e9d7f4de6d23e30f4bb7..001d0b7e2b6b74dea0415f36d4063998ccec1ab9 100644
--- a/cc/layers/scrollbar_layer_interface.h
+++ b/cc/layers/scrollbar_layer_interface.h
@@ -10,10 +10,13 @@
namespace cc {
+class Layer;
+
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 ScrollbarOrientation orientation() const = 0;

Powered by Google App Engine
This is Rietveld 408576698