| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1199 void RenderBlockFlow::paintFloats(PaintInfo& paintInfo, const LayoutPoint& paint
Offset, bool preservePhase) | 1199 void RenderBlockFlow::paintFloats(PaintInfo& paintInfo, const LayoutPoint& paint
Offset, bool preservePhase) |
| 1200 { | 1200 { |
| 1201 // FIXME(sky): Remove this. | 1201 // FIXME(sky): Remove this. |
| 1202 } | 1202 } |
| 1203 | 1203 |
| 1204 void RenderBlockFlow::clearFloats(EClear clear) | 1204 void RenderBlockFlow::clearFloats(EClear clear) |
| 1205 { | 1205 { |
| 1206 // FIXME(sky): Remove this. | 1206 // FIXME(sky): Remove this. |
| 1207 } | 1207 } |
| 1208 | 1208 |
| 1209 LayoutPoint RenderBlockFlow::flipFloatForWritingModeForChild(const FloatingObjec
t* child, const LayoutPoint& point) const | |
| 1210 { | |
| 1211 // FIXME(sky): Remove this. | |
| 1212 return LayoutPoint(); | |
| 1213 } | |
| 1214 | |
| 1215 LayoutUnit RenderBlockFlow::logicalLeftOffsetForPositioningFloat(LayoutUnit logi
calTop, LayoutUnit fixedOffset, bool applyTextIndent, LayoutUnit* heightRemainin
g) const | 1209 LayoutUnit RenderBlockFlow::logicalLeftOffsetForPositioningFloat(LayoutUnit logi
calTop, LayoutUnit fixedOffset, bool applyTextIndent, LayoutUnit* heightRemainin
g) const |
| 1216 { | 1210 { |
| 1217 // FIXME(sky): Remove this. | 1211 // FIXME(sky): Remove this. |
| 1218 LayoutUnit offset = fixedOffset; | 1212 LayoutUnit offset = fixedOffset; |
| 1219 return adjustLogicalLeftOffsetForLine(offset, applyTextIndent); | 1213 return adjustLogicalLeftOffsetForLine(offset, applyTextIndent); |
| 1220 } | 1214 } |
| 1221 | 1215 |
| 1222 LayoutUnit RenderBlockFlow::logicalRightOffsetForPositioningFloat(LayoutUnit log
icalTop, LayoutUnit fixedOffset, bool applyTextIndent, LayoutUnit* heightRemaini
ng) const | 1216 LayoutUnit RenderBlockFlow::logicalRightOffsetForPositioningFloat(LayoutUnit log
icalTop, LayoutUnit fixedOffset, bool applyTextIndent, LayoutUnit* heightRemaini
ng) const |
| 1223 { | 1217 { |
| 1224 // FIXME(sky): Remove this. | 1218 // FIXME(sky): Remove this. |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1440 RenderBlockFlow::RenderBlockFlowRareData& RenderBlockFlow::ensureRareData() | 1434 RenderBlockFlow::RenderBlockFlowRareData& RenderBlockFlow::ensureRareData() |
| 1441 { | 1435 { |
| 1442 if (m_rareData) | 1436 if (m_rareData) |
| 1443 return *m_rareData; | 1437 return *m_rareData; |
| 1444 | 1438 |
| 1445 m_rareData = adoptPtr(new RenderBlockFlowRareData(this)); | 1439 m_rareData = adoptPtr(new RenderBlockFlowRareData(this)); |
| 1446 return *m_rareData; | 1440 return *m_rareData; |
| 1447 } | 1441 } |
| 1448 | 1442 |
| 1449 } // namespace blink | 1443 } // namespace blink |
| OLD | NEW |