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

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

Issue 927783002: cc: Stop passing the occlusion explicitly to AppendQuads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « cc/layers/nine_patch_layer_impl_unittest.cc ('k') | cc/layers/painted_scrollbar_layer_impl.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_PAINTED_SCROLLBAR_LAYER_IMPL_H_ 5 #ifndef CC_LAYERS_PAINTED_SCROLLBAR_LAYER_IMPL_H_
6 #define CC_LAYERS_PAINTED_SCROLLBAR_LAYER_IMPL_H_ 6 #define CC_LAYERS_PAINTED_SCROLLBAR_LAYER_IMPL_H_
7 7
8 #include "cc/base/cc_export.h" 8 #include "cc/base/cc_export.h"
9 #include "cc/input/scrollbar.h" 9 #include "cc/input/scrollbar.h"
10 #include "cc/layers/scrollbar_layer_impl_base.h" 10 #include "cc/layers/scrollbar_layer_impl_base.h"
(...skipping 12 matching lines...) Expand all
23 ScrollbarOrientation orientation); 23 ScrollbarOrientation orientation);
24 ~PaintedScrollbarLayerImpl() override; 24 ~PaintedScrollbarLayerImpl() override;
25 25
26 // LayerImpl implementation. 26 // LayerImpl implementation.
27 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; 27 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
28 void PushPropertiesTo(LayerImpl* layer) override; 28 void PushPropertiesTo(LayerImpl* layer) override;
29 29
30 bool WillDraw(DrawMode draw_mode, 30 bool WillDraw(DrawMode draw_mode,
31 ResourceProvider* resource_provider) override; 31 ResourceProvider* resource_provider) override;
32 void AppendQuads(RenderPass* render_pass, 32 void AppendQuads(RenderPass* render_pass,
33 const Occlusion& occlusion_in_content_space,
34 AppendQuadsData* append_quads_data) override; 33 AppendQuadsData* append_quads_data) override;
35 34
36 void SetThumbThickness(int thumb_thickness); 35 void SetThumbThickness(int thumb_thickness);
37 void SetThumbLength(int thumb_length); 36 void SetThumbLength(int thumb_length);
38 void SetTrackStart(int track_start); 37 void SetTrackStart(int track_start);
39 void SetTrackLength(int track_length); 38 void SetTrackLength(int track_length);
40 39
41 void set_track_ui_resource_id(UIResourceId uid) { 40 void set_track_ui_resource_id(UIResourceId uid) {
42 track_ui_resource_id_ = uid; 41 track_ui_resource_id_ = uid;
43 } 42 }
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 int thumb_thickness_; 74 int thumb_thickness_;
76 int thumb_length_; 75 int thumb_length_;
77 int track_start_; 76 int track_start_;
78 int track_length_; 77 int track_length_;
79 78
80 DISALLOW_COPY_AND_ASSIGN(PaintedScrollbarLayerImpl); 79 DISALLOW_COPY_AND_ASSIGN(PaintedScrollbarLayerImpl);
81 }; 80 };
82 81
83 } // namespace cc 82 } // namespace cc
84 #endif // CC_LAYERS_PAINTED_SCROLLBAR_LAYER_IMPL_H_ 83 #endif // CC_LAYERS_PAINTED_SCROLLBAR_LAYER_IMPL_H_
OLDNEW
« no previous file with comments | « cc/layers/nine_patch_layer_impl_unittest.cc ('k') | cc/layers/painted_scrollbar_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698