| 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 * (C) 2007 David Smith (catfish.man@gmail.com) | 4 * (C) 2007 David Smith (catfish.man@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "core/platform/PODIntervalTree.h" | 26 #include "core/platform/PODIntervalTree.h" |
| 27 #include "core/platform/graphics/TextRun.h" | 27 #include "core/platform/graphics/TextRun.h" |
| 28 #include "core/platform/text/TextBreakIterator.h" | 28 #include "core/platform/text/TextBreakIterator.h" |
| 29 #include "core/rendering/ColumnInfo.h" | 29 #include "core/rendering/ColumnInfo.h" |
| 30 #include "core/rendering/GapRects.h" | 30 #include "core/rendering/GapRects.h" |
| 31 #include "core/rendering/RenderBox.h" | 31 #include "core/rendering/RenderBox.h" |
| 32 #include "core/rendering/RenderLineBoxList.h" | 32 #include "core/rendering/RenderLineBoxList.h" |
| 33 #include "core/rendering/RootInlineBox.h" | 33 #include "core/rendering/RootInlineBox.h" |
| 34 #include "core/rendering/shapes/ShapeInsideInfo.h" | 34 #include "core/rendering/shapes/ShapeInsideInfo.h" |
| 35 #include "core/rendering/style/ShapeValue.h" | 35 #include "core/rendering/style/ShapeValue.h" |
| 36 #include <wtf/ListHashSet.h> | 36 #include "wtf/ListHashSet.h" |
| 37 #include <wtf/OwnPtr.h> | 37 #include "wtf/OwnPtr.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class BasicShape; | 41 class BasicShape; |
| 42 class BidiContext; | 42 class BidiContext; |
| 43 class InlineIterator; | 43 class InlineIterator; |
| 44 class LayoutStateMaintainer; | 44 class LayoutStateMaintainer; |
| 45 class LineLayoutState; | 45 class LineLayoutState; |
| 46 class LineWidth; | 46 class LineWidth; |
| 47 class RenderInline; | 47 class RenderInline; |
| (...skipping 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1345 static String string(const int value); | 1345 static String string(const int value); |
| 1346 }; | 1346 }; |
| 1347 template<> struct ValueToString<RenderBlock::FloatingObject*> { | 1347 template<> struct ValueToString<RenderBlock::FloatingObject*> { |
| 1348 static String string(const RenderBlock::FloatingObject*); | 1348 static String string(const RenderBlock::FloatingObject*); |
| 1349 }; | 1349 }; |
| 1350 #endif | 1350 #endif |
| 1351 | 1351 |
| 1352 } // namespace WebCore | 1352 } // namespace WebCore |
| 1353 | 1353 |
| 1354 #endif // RenderBlock_h | 1354 #endif // RenderBlock_h |
| OLD | NEW |