| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 | 165 |
| 166 virtual LayoutUnit lineHeight(bool firstLine, LineDirectionMode, LinePositio
nMode = PositionOnContainingLine) const; | 166 virtual LayoutUnit lineHeight(bool firstLine, LineDirectionMode, LinePositio
nMode = PositionOnContainingLine) const; |
| 167 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode
, LinePositionMode = PositionOnContainingLine) const; | 167 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode
, LinePositionMode = PositionOnContainingLine) const; |
| 168 | 168 |
| 169 virtual void childBecameNonInline(RenderObject* child); | 169 virtual void childBecameNonInline(RenderObject* child); |
| 170 | 170 |
| 171 virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&); | 171 virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&); |
| 172 | 172 |
| 173 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0); | 173 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0); |
| 174 | 174 |
| 175 #if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION) | 175 #if ENABLE(DRAGGABLE_REGION) |
| 176 virtual void addAnnotatedRegions(Vector<AnnotatedRegionValue>&); | 176 virtual void addAnnotatedRegions(Vector<AnnotatedRegionValue>&); |
| 177 #endif | 177 #endif |
| 178 | 178 |
| 179 virtual void updateFromStyle() OVERRIDE; | 179 virtual void updateFromStyle() OVERRIDE; |
| 180 | 180 |
| 181 RenderInline* clone() const; | 181 RenderInline* clone() const; |
| 182 | 182 |
| 183 void paintOutlineForLine(GraphicsContext*, const LayoutPoint&, const LayoutR
ect& prevLine, const LayoutRect& thisLine, | 183 void paintOutlineForLine(GraphicsContext*, const LayoutPoint&, const LayoutR
ect& prevLine, const LayoutRect& thisLine, |
| 184 const LayoutRect& nextLine, const Color); | 184 const LayoutRect& nextLine, const Color); |
| 185 RenderBoxModelObject* continuationBefore(RenderObject* beforeChild); | 185 RenderBoxModelObject* continuationBefore(RenderObject* beforeChild); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 201 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderInline()); | 201 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderInline()); |
| 202 return static_cast<const RenderInline*>(object); | 202 return static_cast<const RenderInline*>(object); |
| 203 } | 203 } |
| 204 | 204 |
| 205 // This will catch anyone doing an unnecessary cast. | 205 // This will catch anyone doing an unnecessary cast. |
| 206 void toRenderInline(const RenderInline*); | 206 void toRenderInline(const RenderInline*); |
| 207 | 207 |
| 208 } // namespace WebCore | 208 } // namespace WebCore |
| 209 | 209 |
| 210 #endif // RenderInline_h | 210 #endif // RenderInline_h |
| OLD | NEW |