| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "core/platform/text/BidiResolver.h" | 29 #include "core/platform/text/BidiResolver.h" |
| 30 #include "core/rendering/EllipsisBox.h" | 30 #include "core/rendering/EllipsisBox.h" |
| 31 #include "core/rendering/HitTestResult.h" | 31 #include "core/rendering/HitTestResult.h" |
| 32 #include "core/rendering/InlineTextBox.h" | 32 #include "core/rendering/InlineTextBox.h" |
| 33 #include "core/rendering/PaintInfo.h" | 33 #include "core/rendering/PaintInfo.h" |
| 34 #include "core/rendering/RenderArena.h" | 34 #include "core/rendering/RenderArena.h" |
| 35 #include "core/rendering/RenderBlock.h" | 35 #include "core/rendering/RenderBlock.h" |
| 36 #include "core/rendering/RenderFlowThread.h" | 36 #include "core/rendering/RenderFlowThread.h" |
| 37 #include "core/rendering/RenderView.h" | 37 #include "core/rendering/RenderView.h" |
| 38 #include "core/rendering/VerticalPositionCache.h" | 38 #include "core/rendering/VerticalPositionCache.h" |
| 39 #include <wtf/unicode/Unicode.h> | 39 #include "wtf/unicode/Unicode.h" |
| 40 | 40 |
| 41 using namespace std; | 41 using namespace std; |
| 42 | 42 |
| 43 namespace WebCore { | 43 namespace WebCore { |
| 44 | 44 |
| 45 struct SameSizeAsRootInlineBox : public InlineFlowBox { | 45 struct SameSizeAsRootInlineBox : public InlineFlowBox { |
| 46 unsigned variables[5]; | 46 unsigned variables[5]; |
| 47 void* pointers[4]; | 47 void* pointers[4]; |
| 48 }; | 48 }; |
| 49 | 49 |
| (...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 990 } | 990 } |
| 991 | 991 |
| 992 #ifndef NDEBUG | 992 #ifndef NDEBUG |
| 993 const char* RootInlineBox::boxName() const | 993 const char* RootInlineBox::boxName() const |
| 994 { | 994 { |
| 995 return "RootInlineBox"; | 995 return "RootInlineBox"; |
| 996 } | 996 } |
| 997 #endif | 997 #endif |
| 998 | 998 |
| 999 } // namespace WebCore | 999 } // namespace WebCore |
| OLD | NEW |