Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: Source/core/rendering/RenderText.cpp

Issue 910573002: Move AbstractInlineTextBox to line/ sub-directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase master Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 14 matching lines...) Expand all
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/dom/AXObjectCache.h" 28 #include "core/dom/AXObjectCache.h"
29 #include "core/dom/Text.h" 29 #include "core/dom/Text.h"
30 #include "core/editing/VisiblePosition.h" 30 #include "core/editing/VisiblePosition.h"
31 #include "core/editing/iterators/TextIterator.h" 31 #include "core/editing/iterators/TextIterator.h"
32 #include "core/frame/FrameView.h" 32 #include "core/frame/FrameView.h"
33 #include "core/frame/Settings.h" 33 #include "core/frame/Settings.h"
34 #include "core/html/parser/TextResourceDecoder.h" 34 #include "core/html/parser/TextResourceDecoder.h"
35 #include "core/layout/AbstractInlineTextBox.h"
36 #include "core/layout/Layer.h" 35 #include "core/layout/Layer.h"
37 #include "core/layout/TextRunConstructor.h" 36 #include "core/layout/TextRunConstructor.h"
37 #include "core/layout/line/AbstractInlineTextBox.h"
38 #include "core/layout/line/EllipsisBox.h" 38 #include "core/layout/line/EllipsisBox.h"
39 #include "core/layout/line/InlineTextBox.h" 39 #include "core/layout/line/InlineTextBox.h"
40 #include "core/rendering/RenderBlock.h" 40 #include "core/rendering/RenderBlock.h"
41 #include "core/rendering/RenderCombineText.h" 41 #include "core/rendering/RenderCombineText.h"
42 #include "core/rendering/RenderView.h" 42 #include "core/rendering/RenderView.h"
43 #include "platform/fonts/Character.h" 43 #include "platform/fonts/Character.h"
44 #include "platform/fonts/FontCache.h" 44 #include "platform/fonts/FontCache.h"
45 #include "platform/geometry/FloatQuad.h" 45 #include "platform/geometry/FloatQuad.h"
46 #include "platform/graphics/paint/DisplayItemList.h" 46 #include "platform/graphics/paint/DisplayItemList.h"
47 #include "platform/text/BidiResolver.h" 47 #include "platform/text/BidiResolver.h"
(...skipping 1841 matching lines...) Expand 10 before | Expand all | Expand 10 after
1889 } 1889 }
1890 1890
1891 void RenderText::invalidateDisplayItemClients(DisplayItemList* displayItemList) const 1891 void RenderText::invalidateDisplayItemClients(DisplayItemList* displayItemList) const
1892 { 1892 {
1893 LayoutObject::invalidateDisplayItemClients(displayItemList); 1893 LayoutObject::invalidateDisplayItemClients(displayItemList);
1894 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox()) 1894 for (InlineTextBox* box = firstTextBox(); box; box = box->nextTextBox())
1895 displayItemList->invalidate(box->displayItemClient()); 1895 displayItemList->invalidate(box->displayItemClient());
1896 } 1896 }
1897 1897
1898 } // namespace blink 1898 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/layout/line/InlineTextBox.cpp ('k') | Source/modules/accessibility/AXInlineTextBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698