| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the select element renderer in WebCore. | 2 * This file is part of the select element renderer in WebCore. |
| 3 * | 3 * |
| 4 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 int size() const; | 45 int size() const; |
| 46 | 46 |
| 47 // Unlike scrollRectToVisible this will not scroll parent boxes. | 47 // Unlike scrollRectToVisible this will not scroll parent boxes. |
| 48 void scrollToRect(const LayoutRect&); | 48 void scrollToRect(const LayoutRect&); |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 HTMLSelectElement* selectElement() const; | 51 HTMLSelectElement* selectElement() const; |
| 52 | 52 |
| 53 virtual const char* renderName() const override { return "RenderListBox"; } | 53 virtual const char* renderName() const override { return "RenderListBox"; } |
| 54 | 54 |
| 55 virtual bool isOfType(RenderObjectType type) const override { return type ==
RenderObjectListBox || RenderBlockFlow::isOfType(type); } | 55 virtual bool isOfType(LayoutObjectType type) const override { return type ==
LayoutObjectListBox || RenderBlockFlow::isOfType(type); } |
| 56 | 56 |
| 57 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logic
alTop, LogicalExtentComputedValues&) const override; | 57 virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logic
alTop, LogicalExtentComputedValues&) const override; |
| 58 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const override; | 58 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const override; |
| 59 | 59 |
| 60 virtual void stopAutoscroll() override; | 60 virtual void stopAutoscroll() override; |
| 61 | 61 |
| 62 LayoutUnit defaultItemHeight() const; | 62 LayoutUnit defaultItemHeight() const; |
| 63 LayoutUnit itemHeight() const; | 63 LayoutUnit itemHeight() const; |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderListBox, isListBox()); | 66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(RenderListBox, isListBox()); |
| 67 | 67 |
| 68 } // namepace blink | 68 } // namepace blink |
| 69 | 69 |
| 70 #endif // RenderListBox_h | 70 #endif // RenderListBox_h |
| OLD | NEW |