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

Unified Diff: cc/layers/solid_color_scrollbar_layer.h

Issue 135183016: Revert of Pinch/Zoom Infrastructure & Plumbing CL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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_unittest.cc ('k') | cc/layers/solid_color_scrollbar_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/solid_color_scrollbar_layer.h
diff --git a/cc/layers/solid_color_scrollbar_layer.h b/cc/layers/solid_color_scrollbar_layer.h
index a954af165ecfd25e3599ce43d0ad91926b370582..9c0dc1ed47300c12ae1910ca2e8ab790081c04e8 100644
--- a/cc/layers/solid_color_scrollbar_layer.h
+++ b/cc/layers/solid_color_scrollbar_layer.h
@@ -21,19 +21,15 @@
ScrollbarOrientation orientation,
int thumb_thickness,
bool is_left_side_vertical_scrollbar,
- Layer* scroll_layer);
+ int scroll_layer_id);
// Layer overrides.
virtual bool OpacityCanAnimateOnImplThread() const OVERRIDE;
virtual ScrollbarLayerInterface* ToScrollbarLayer() OVERRIDE;
- virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
- virtual void PushScrollClipPropertiesTo(LayerImpl* layer) OVERRIDE;
-
// ScrollbarLayerInterface
virtual int ScrollLayerId() const OVERRIDE;
- virtual void SetScrollLayer(scoped_refptr<Layer> layer) OVERRIDE;
- virtual void SetClipLayer(scoped_refptr<Layer> layer) OVERRIDE;
+ virtual void SetScrollLayerId(int id) OVERRIDE;
virtual ScrollbarOrientation orientation() const OVERRIDE;
@@ -41,12 +37,11 @@
SolidColorScrollbarLayer(ScrollbarOrientation orientation,
int thumb_thickness,
bool is_left_side_vertical_scrollbar,
- Layer* scroll_layer);
+ int scroll_layer_id);
virtual ~SolidColorScrollbarLayer();
private:
- scoped_refptr<Layer> scroll_layer_;
- scoped_refptr<Layer> clip_layer_;
+ int scroll_layer_id_;
ScrollbarOrientation orientation_;
int thumb_thickness_;
bool is_left_side_vertical_scrollbar_;
« no previous file with comments | « cc/layers/scrollbar_layer_unittest.cc ('k') | cc/layers/solid_color_scrollbar_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698