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

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

Issue 17327003: Move pushMappingToContainer to RenderBoxModelObject (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderBoxModelObject.cpp ('k') | Source/core/rendering/RenderInline.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 virtual LayoutUnit offsetLeft() const OVERRIDE FINAL; 140 virtual LayoutUnit offsetLeft() const OVERRIDE FINAL;
141 virtual LayoutUnit offsetTop() const OVERRIDE FINAL; 141 virtual LayoutUnit offsetTop() const OVERRIDE FINAL;
142 virtual LayoutUnit offsetWidth() const OVERRIDE FINAL { return linesBounding Box().width(); } 142 virtual LayoutUnit offsetWidth() const OVERRIDE FINAL { return linesBounding Box().width(); }
143 virtual LayoutUnit offsetHeight() const OVERRIDE FINAL { return linesBoundin gBox().height(); } 143 virtual LayoutUnit offsetHeight() const OVERRIDE FINAL { return linesBoundin gBox().height(); }
144 144
145 virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObjec t* repaintContainer) const OVERRIDE; 145 virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObjec t* repaintContainer) const OVERRIDE;
146 virtual LayoutRect rectWithOutlineForRepaint(const RenderLayerModelObject* r epaintContainer, LayoutUnit outlineWidth) const OVERRIDE FINAL; 146 virtual LayoutRect rectWithOutlineForRepaint(const RenderLayerModelObject* r epaintContainer, LayoutUnit outlineWidth) const OVERRIDE FINAL;
147 virtual void computeRectForRepaint(const RenderLayerModelObject* repaintCont ainer, LayoutRect&, bool fixed) const OVERRIDE FINAL; 147 virtual void computeRectForRepaint(const RenderLayerModelObject* repaintCont ainer, LayoutRect&, bool fixed) const OVERRIDE FINAL;
148 148
149 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContai ner, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE; 149 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContai ner, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
150 virtual const RenderObject* pushMappingToContainer(const RenderLayerModelObj ect* ancestorToStopAt, RenderGeometryMap&) const OVERRIDE;
151 150
152 virtual VisiblePosition positionForPoint(const LayoutPoint&) OVERRIDE FINAL; 151 virtual VisiblePosition positionForPoint(const LayoutPoint&) OVERRIDE FINAL;
153 152
154 virtual LayoutRect frameRectForStickyPositioning() const OVERRIDE FINAL { re turn linesBoundingBox(); } 153 virtual LayoutRect frameRectForStickyPositioning() const OVERRIDE FINAL { re turn linesBoundingBox(); }
155 154
156 virtual IntRect borderBoundingBox() const OVERRIDE FINAL 155 virtual IntRect borderBoundingBox() const OVERRIDE FINAL
157 { 156 {
158 IntRect boundingBox = linesBoundingBox(); 157 IntRect boundingBox = linesBoundingBox();
159 return IntRect(0, 0, boundingBox.width(), boundingBox.height()); 158 return IntRect(0, 0, boundingBox.width(), boundingBox.height());
160 } 159 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderInline()); 198 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderInline());
200 return static_cast<const RenderInline*>(object); 199 return static_cast<const RenderInline*>(object);
201 } 200 }
202 201
203 // This will catch anyone doing an unnecessary cast. 202 // This will catch anyone doing an unnecessary cast.
204 void toRenderInline(const RenderInline*); 203 void toRenderInline(const RenderInline*);
205 204
206 } // namespace WebCore 205 } // namespace WebCore
207 206
208 #endif // RenderInline_h 207 #endif // RenderInline_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBoxModelObject.cpp ('k') | Source/core/rendering/RenderInline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698