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

Unified Diff: cc/blink/scrollbar_impl.cc

Issue 2591863003: Use nine-patch resource for drawing Aura overlay scrollbar thumb. (Closed)
Patch Set: Move CheckGeometryLimitations back to where it used to be (AppendQuads) Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/blink/scrollbar_impl.h ('k') | cc/blink/web_compositor_support_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/blink/scrollbar_impl.cc
diff --git a/cc/blink/scrollbar_impl.cc b/cc/blink/scrollbar_impl.cc
index 761586b116347417ddb6048a81d3f8495e377cf7..4ba11e33ee2343c71bfb223113495c95b65f6fe3 100644
--- a/cc/blink/scrollbar_impl.cc
+++ b/cc/blink/scrollbar_impl.cc
@@ -73,6 +73,18 @@ bool ScrollbarImpl::NeedsPaintPart(cc::ScrollbarPart part) const {
return painter_.trackNeedsRepaint();
}
+bool ScrollbarImpl::UsesNinePatchThumbResource() const {
+ return painter_.usesNinePatchThumbResource();
+}
+
+gfx::Size ScrollbarImpl::NinePatchThumbCanvasSize() const {
+ return geometry_->ninePatchThumbCanvasSize(scrollbar_.get());
+}
+
+gfx::Rect ScrollbarImpl::NinePatchThumbAperture() const {
+ return geometry_->ninePatchThumbAperture(scrollbar_.get());
+}
+
void ScrollbarImpl::PaintPart(cc::PaintCanvas* canvas,
cc::ScrollbarPart part,
const gfx::Rect& content_rect) {
« no previous file with comments | « cc/blink/scrollbar_impl.h ('k') | cc/blink/web_compositor_support_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698