| 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 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) | 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "config.h" | 25 #include "config.h" |
| 26 #include "core/rendering/RenderText.h" | 26 #include "core/rendering/RenderText.h" |
| 27 | 27 |
| 28 #include "core/accessibility/AXObjectCache.h" | 28 #include "core/accessibility/AXObjectCache.h" |
| 29 #include "core/dom/Text.h" | 29 #include "core/dom/Text.h" |
| 30 #include "core/editing/TextIterator.h" | 30 #include "core/editing/TextIterator.h" |
| 31 #include "core/fetch/TextResourceDecoder.h" |
| 31 #include "core/frame/FrameView.h" | 32 #include "core/frame/FrameView.h" |
| 32 #include "core/frame/Settings.h" | 33 #include "core/frame/Settings.h" |
| 33 #include "core/html/parser/TextResourceDecoder.h" | |
| 34 #include "core/rendering/AbstractInlineTextBox.h" | 34 #include "core/rendering/AbstractInlineTextBox.h" |
| 35 #include "core/rendering/EllipsisBox.h" | 35 #include "core/rendering/EllipsisBox.h" |
| 36 #include "core/rendering/InlineTextBox.h" | 36 #include "core/rendering/InlineTextBox.h" |
| 37 #include "core/rendering/RenderBlock.h" | 37 #include "core/rendering/RenderBlock.h" |
| 38 #include "core/rendering/RenderCombineText.h" | 38 #include "core/rendering/RenderCombineText.h" |
| 39 #include "core/rendering/RenderLayer.h" | 39 #include "core/rendering/RenderLayer.h" |
| 40 #include "core/rendering/RenderView.h" | 40 #include "core/rendering/RenderView.h" |
| 41 #include "core/rendering/break_lines.h" | 41 #include "core/rendering/break_lines.h" |
| 42 #include "platform/geometry/FloatQuad.h" | 42 #include "platform/geometry/FloatQuad.h" |
| 43 #include "platform/text/BidiResolver.h" | 43 #include "platform/text/BidiResolver.h" |
| (...skipping 1817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1861 } | 1861 } |
| 1862 secureTextTimer->restartWithNewText(lastTypedCharacterOffset); | 1862 secureTextTimer->restartWithNewText(lastTypedCharacterOffset); |
| 1863 } | 1863 } |
| 1864 | 1864 |
| 1865 PassRefPtr<AbstractInlineTextBox> RenderText::firstAbstractInlineTextBox() | 1865 PassRefPtr<AbstractInlineTextBox> RenderText::firstAbstractInlineTextBox() |
| 1866 { | 1866 { |
| 1867 return AbstractInlineTextBox::getOrCreate(this, m_firstTextBox); | 1867 return AbstractInlineTextBox::getOrCreate(this, m_firstTextBox); |
| 1868 } | 1868 } |
| 1869 | 1869 |
| 1870 } // namespace WebCore | 1870 } // namespace WebCore |
| OLD | NEW |