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

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: Rebase to r248052. Created 6 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 | « cc/layers/scrollbar_layer_impl_base.cc ('k') | cc/layers/scrollbar_layer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..e76fc27aeb7f4859c885d09cdded320d6fcbe713 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(int layer_id) = 0;
+ virtual void SetClipLayer(int layer_id) = 0;
+ virtual void PushScrollClipPropertiesTo(LayerImpl* layer) = 0;
virtual ScrollbarOrientation orientation() const = 0;
« no previous file with comments | « cc/layers/scrollbar_layer_impl_base.cc ('k') | cc/layers/scrollbar_layer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698