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

Side by Side Diff: cc/layers/solid_color_scrollbar_layer.h

Issue 146713002: 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_LAYERS_SOLID_COLOR_SCROLLBAR_LAYER_H_ 5 #ifndef CC_LAYERS_SOLID_COLOR_SCROLLBAR_LAYER_H_
6 #define CC_LAYERS_SOLID_COLOR_SCROLLBAR_LAYER_H_ 6 #define CC_LAYERS_SOLID_COLOR_SCROLLBAR_LAYER_H_
7 7
8 #include "cc/base/cc_export.h" 8 #include "cc/base/cc_export.h"
9 #include "cc/layers/layer.h" 9 #include "cc/layers/layer.h"
10 #include "cc/layers/scrollbar_layer_interface.h" 10 #include "cc/layers/scrollbar_layer_interface.h"
11 11
12 namespace cc { 12 namespace cc {
13 13
14 class CC_EXPORT SolidColorScrollbarLayer : public ScrollbarLayerInterface, 14 class CC_EXPORT SolidColorScrollbarLayer : public ScrollbarLayerInterface,
15 public Layer { 15 public Layer {
16 public: 16 public:
17 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) 17 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
18 OVERRIDE; 18 OVERRIDE;
19 19
20 static scoped_refptr<SolidColorScrollbarLayer> Create( 20 static scoped_refptr<SolidColorScrollbarLayer> Create(
21 ScrollbarOrientation orientation, 21 ScrollbarOrientation orientation,
22 int thumb_thickness, 22 int thumb_thickness,
23 bool is_left_side_vertical_scrollbar, 23 bool is_left_side_vertical_scrollbar,
24 Layer* scroll_layer); 24 int scroll_layer_id);
25 25
26 // Layer overrides. 26 // Layer overrides.
27 virtual bool OpacityCanAnimateOnImplThread() const OVERRIDE; 27 virtual bool OpacityCanAnimateOnImplThread() const OVERRIDE;
28 virtual ScrollbarLayerInterface* ToScrollbarLayer() OVERRIDE; 28 virtual ScrollbarLayerInterface* ToScrollbarLayer() OVERRIDE;
29 29
30 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
31 virtual void PushScrollClipPropertiesTo(LayerImpl* layer) OVERRIDE;
32
33 // ScrollbarLayerInterface 30 // ScrollbarLayerInterface
34 virtual int ScrollLayerId() const OVERRIDE; 31 virtual int ScrollLayerId() const OVERRIDE;
35 virtual void SetScrollLayer(scoped_refptr<Layer> layer) OVERRIDE; 32 virtual void SetScrollLayerId(int id) OVERRIDE;
36 virtual void SetClipLayer(scoped_refptr<Layer> layer) OVERRIDE;
37 33
38 virtual ScrollbarOrientation orientation() const OVERRIDE; 34 virtual ScrollbarOrientation orientation() const OVERRIDE;
39 35
40 protected: 36 protected:
41 SolidColorScrollbarLayer(ScrollbarOrientation orientation, 37 SolidColorScrollbarLayer(ScrollbarOrientation orientation,
42 int thumb_thickness, 38 int thumb_thickness,
43 bool is_left_side_vertical_scrollbar, 39 bool is_left_side_vertical_scrollbar,
44 Layer* scroll_layer); 40 int scroll_layer_id);
45 virtual ~SolidColorScrollbarLayer(); 41 virtual ~SolidColorScrollbarLayer();
46 42
47 private: 43 private:
48 scoped_refptr<Layer> scroll_layer_; 44 int scroll_layer_id_;
49 scoped_refptr<Layer> clip_layer_;
50 ScrollbarOrientation orientation_; 45 ScrollbarOrientation orientation_;
51 int thumb_thickness_; 46 int thumb_thickness_;
52 bool is_left_side_vertical_scrollbar_; 47 bool is_left_side_vertical_scrollbar_;
53 48
54 DISALLOW_COPY_AND_ASSIGN(SolidColorScrollbarLayer); 49 DISALLOW_COPY_AND_ASSIGN(SolidColorScrollbarLayer);
55 }; 50 };
56 51
57 } // namespace cc 52 } // namespace cc
58 53
59 #endif // CC_LAYERS_SOLID_COLOR_SCROLLBAR_LAYER_H_ 54 #endif // CC_LAYERS_SOLID_COLOR_SCROLLBAR_LAYER_H_
OLDNEW
« 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