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

Side by Side Diff: Source/core/rendering/RenderScrollbarPart.h

Issue 138903031: Don't let RenderScrollbarPart have padding. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code review - add test. 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OV ERRIDE; 61 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OV ERRIDE;
62 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) OVERRIDE; 62 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) OVERRIDE;
63 63
64 private: 64 private:
65 RenderScrollbarPart(RenderScrollbar*, ScrollbarPart); 65 RenderScrollbarPart(RenderScrollbar*, ScrollbarPart);
66 66
67 virtual void computePreferredLogicalWidths() OVERRIDE; 67 virtual void computePreferredLogicalWidths() OVERRIDE;
68 68
69 virtual bool supportsPartialLayout() const OVERRIDE { return false; } 69 virtual bool supportsPartialLayout() const OVERRIDE { return false; }
70 70
71 virtual LayoutUnit paddingTop() const OVERRIDE { return LayoutUnit(); }
72 virtual LayoutUnit paddingBottom() const OVERRIDE { return LayoutUnit(); }
73 virtual LayoutUnit paddingLeft() const OVERRIDE { return LayoutUnit(); }
74 virtual LayoutUnit paddingRight() const OVERRIDE { return LayoutUnit(); }
75 virtual LayoutUnit paddingBefore() const OVERRIDE { return LayoutUnit(); }
76 virtual LayoutUnit paddingAfter() const OVERRIDE { return LayoutUnit(); }
77 virtual LayoutUnit paddingStart() const OVERRIDE { return LayoutUnit(); }
78 virtual LayoutUnit paddingEnd() const OVERRIDE { return LayoutUnit(); }
Julien - ping for review 2014/02/19 16:25:14 Having a comment as to why we do that would be nic
mstensho (USE GERRIT) 2014/02/22 20:54:50 Done. Simply returning 0 is fine, since scroll ba
79
71 void layoutHorizontalPart(); 80 void layoutHorizontalPart();
72 void layoutVerticalPart(); 81 void layoutVerticalPart();
73 82
74 void computeScrollbarWidth(); 83 void computeScrollbarWidth();
75 void computeScrollbarHeight(); 84 void computeScrollbarHeight();
76 85
77 RenderScrollbar* m_scrollbar; 86 RenderScrollbar* m_scrollbar;
78 ScrollbarPart m_part; 87 ScrollbarPart m_part;
79 }; 88 };
80 89
81 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderScrollbarPart, isRenderScrollbarPart()); 90 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderScrollbarPart, isRenderScrollbarPart());
82 91
83 } // namespace WebCore 92 } // namespace WebCore
84 93
85 #endif // RenderScrollbarPart_h 94 #endif // RenderScrollbarPart_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698