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

Side by Side Diff: cc/test/fake_scrollbar.h

Issue 150603004: Fixed rounding issue on scrollbar rasterization. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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_TEST_FAKE_SCROLLBAR_H_ 5 #ifndef CC_TEST_FAKE_SCROLLBAR_H_
6 #define CC_TEST_FAKE_SCROLLBAR_H_ 6 #define CC_TEST_FAKE_SCROLLBAR_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "cc/input/scrollbar.h" 9 #include "cc/input/scrollbar.h"
10 #include "third_party/skia/include/core/SkColor.h" 10 #include "third_party/skia/include/core/SkColor.h"
(...skipping 18 matching lines...) Expand all
29 virtual void PaintPart(SkCanvas* canvas, 29 virtual void PaintPart(SkCanvas* canvas,
30 ScrollbarPart part, 30 ScrollbarPart part,
31 const gfx::Rect& content_rect) OVERRIDE; 31 const gfx::Rect& content_rect) OVERRIDE;
32 32
33 void set_location(gfx::Point location) { location_ = location; } 33 void set_location(gfx::Point location) { location_ = location; }
34 void set_track_rect(const gfx::Rect& track_rect) { track_rect_ = track_rect; } 34 void set_track_rect(const gfx::Rect& track_rect) { track_rect_ = track_rect; }
35 void set_thumb_thickness(int thumb_thickness) { 35 void set_thumb_thickness(int thumb_thickness) {
36 thumb_thickness_ = thumb_thickness; 36 thumb_thickness_ = thumb_thickness;
37 } 37 }
38 void set_thumb_length(int thumb_length) { thumb_length_ = thumb_length; } 38 void set_thumb_length(int thumb_length) { thumb_length_ = thumb_length; }
39 SkColor get_color() const { return SK_ColorBLACK | fill_color_; }
danakj 2014/02/18 20:43:30 name this paint_fill_color() ?
bokan 2014/02/18 21:48:15 Done.
39 40
40 private: 41 private:
41 bool paint_; 42 bool paint_;
42 bool has_thumb_; 43 bool has_thumb_;
43 bool is_overlay_; 44 bool is_overlay_;
44 int thumb_thickness_; 45 int thumb_thickness_;
45 int thumb_length_; 46 int thumb_length_;
46 gfx::Point location_; 47 gfx::Point location_;
47 gfx::Rect track_rect_; 48 gfx::Rect track_rect_;
48 SkColor fill_color_; 49 SkColor fill_color_;
49 50
50 DISALLOW_COPY_AND_ASSIGN(FakeScrollbar); 51 DISALLOW_COPY_AND_ASSIGN(FakeScrollbar);
51 }; 52 };
52 53
53 } // namespace cc 54 } // namespace cc
54 55
55 #endif // CC_TEST_FAKE_SCROLLBAR_H_ 56 #endif // CC_TEST_FAKE_SCROLLBAR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698