OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008, 2009 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 11 matching lines...) Expand all Loading... |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #include "config.h" | 26 #include "config.h" |
27 #include "core/rendering/RenderScrollbar.h" | 27 #include "core/rendering/RenderScrollbar.h" |
28 | 28 |
29 #include "core/css/PseudoStyleRequest.h" | 29 #include "core/css/PseudoStyleRequest.h" |
30 #include "core/frame/FrameView.h" | 30 #include "core/frame/FrameView.h" |
31 #include "core/frame/LocalFrame.h" | 31 #include "core/frame/LocalFrame.h" |
32 #include "core/rendering/RenderPart.h" | 32 #include "core/layout/LayoutPart.h" |
33 #include "core/rendering/RenderScrollbarPart.h" | 33 #include "core/rendering/RenderScrollbarPart.h" |
34 #include "core/rendering/RenderScrollbarTheme.h" | 34 #include "core/rendering/RenderScrollbarTheme.h" |
35 #include "platform/graphics/GraphicsContext.h" | 35 #include "platform/graphics/GraphicsContext.h" |
36 | 36 |
37 namespace blink { | 37 namespace blink { |
38 | 38 |
39 PassRefPtrWillBeRawPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(Scrolla
bleArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, Loca
lFrame* owningFrame) | 39 PassRefPtrWillBeRawPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(Scrolla
bleArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, Loca
lFrame* owningFrame) |
40 { | 40 { |
41 return adoptRefWillBeNoop(new RenderScrollbar(scrollableArea, orientation, o
wnerNode, owningFrame)); | 41 return adoptRefWillBeNoop(new RenderScrollbar(scrollableArea, orientation, o
wnerNode, owningFrame)); |
42 } | 42 } |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 int RenderScrollbar::minimumThumbLength() | 347 int RenderScrollbar::minimumThumbLength() |
348 { | 348 { |
349 RenderScrollbarPart* partRenderer = m_parts.get(ThumbPart); | 349 RenderScrollbarPart* partRenderer = m_parts.get(ThumbPart); |
350 if (!partRenderer) | 350 if (!partRenderer) |
351 return 0; | 351 return 0; |
352 partRenderer->layout(); | 352 partRenderer->layout(); |
353 return orientation() == HorizontalScrollbar ? partRenderer->size().width() :
partRenderer->size().height(); | 353 return orientation() == HorizontalScrollbar ? partRenderer->size().width() :
partRenderer->size().height(); |
354 } | 354 } |
355 | 355 |
356 } | 356 } |
OLD | NEW |