| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999 Lars Knoll (knoll@kde.org) | 2 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Dirk Mueller (mueller@kde.org) | 3 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. |
| 5 * All rights reserved. | 5 * All rights 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/layout/HitTestResult.h" | 26 #include "core/layout/HitTestResult.h" |
| 27 #include "core/layout/api/LineLayoutBR.h" | 27 #include "core/layout/api/LineLayoutBR.h" |
| 28 #include "core/layout/api/LineLayoutBox.h" | 28 #include "core/layout/api/LineLayoutBox.h" |
| 29 #include "core/layout/api/LineLayoutRubyRun.h" | 29 #include "core/layout/api/LineLayoutRubyRun.h" |
| 30 #include "core/layout/api/LineLayoutRubyText.h" | 30 #include "core/layout/api/LineLayoutRubyText.h" |
| 31 #include "core/layout/line/AbstractInlineTextBox.h" | 31 #include "core/layout/line/AbstractInlineTextBox.h" |
| 32 #include "core/layout/line/EllipsisBox.h" | 32 #include "core/layout/line/EllipsisBox.h" |
| 33 #include "core/paint/InlineTextBoxPainter.h" | 33 #include "core/paint/InlineTextBoxPainter.h" |
| 34 #include "platform/fonts/CharacterRange.h" | 34 #include "platform/fonts/CharacterRange.h" |
| 35 #include "platform/fonts/FontCache.h" | 35 #include "platform/fonts/FontCache.h" |
| 36 #include "wtf/Vector.h" | 36 #include "platform/wtf/Vector.h" |
| 37 #include "wtf/text/StringBuilder.h" | 37 #include "platform/wtf/text/StringBuilder.h" |
| 38 | 38 |
| 39 #include <algorithm> | 39 #include <algorithm> |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 struct SameSizeAsInlineTextBox : public InlineBox { | 43 struct SameSizeAsInlineTextBox : public InlineBox { |
| 44 unsigned variables[1]; | 44 unsigned variables[1]; |
| 45 unsigned short variables2[2]; | 45 unsigned short variables2[2]; |
| 46 void* pointers[2]; | 46 void* pointers[2]; |
| 47 }; | 47 }; |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 for (; printed_characters < kLayoutObjectCharacterOffset; | 722 for (; printed_characters < kLayoutObjectCharacterOffset; |
| 723 printed_characters++) | 723 printed_characters++) |
| 724 fputc(' ', stderr); | 724 fputc(' ', stderr); |
| 725 fprintf(stderr, "(%d,%d) \"%s\"\n", Start(), Start() + Len(), | 725 fprintf(stderr, "(%d,%d) \"%s\"\n", Start(), Start() + Len(), |
| 726 value.Utf8().Data()); | 726 value.Utf8().Data()); |
| 727 } | 727 } |
| 728 | 728 |
| 729 #endif | 729 #endif |
| 730 | 730 |
| 731 } // namespace blink | 731 } // namespace blink |
| OLD | NEW |