OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 12 matching lines...) Expand all Loading... |
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "core/layout/LayoutBlockFlow.h" | 31 #include "core/layout/LayoutBlockFlow.h" |
32 | 32 |
| 33 #include <memory> |
33 #include "core/editing/Editor.h" | 34 #include "core/editing/Editor.h" |
34 #include "core/frame/FrameView.h" | 35 #include "core/frame/FrameView.h" |
35 #include "core/frame/LocalFrame.h" | 36 #include "core/frame/LocalFrame.h" |
36 #include "core/html/HTMLDialogElement.h" | 37 #include "core/html/HTMLDialogElement.h" |
37 #include "core/layout/HitTestLocation.h" | 38 #include "core/layout/HitTestLocation.h" |
38 #include "core/layout/LayoutAnalyzer.h" | 39 #include "core/layout/LayoutAnalyzer.h" |
39 #include "core/layout/LayoutFlowThread.h" | 40 #include "core/layout/LayoutFlowThread.h" |
40 #include "core/layout/LayoutInline.h" | 41 #include "core/layout/LayoutInline.h" |
41 #include "core/layout/LayoutMultiColumnFlowThread.h" | 42 #include "core/layout/LayoutMultiColumnFlowThread.h" |
42 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" | 43 #include "core/layout/LayoutMultiColumnSpannerPlaceholder.h" |
43 #include "core/layout/LayoutPagedFlowThread.h" | 44 #include "core/layout/LayoutPagedFlowThread.h" |
44 #include "core/layout/LayoutView.h" | 45 #include "core/layout/LayoutView.h" |
45 #include "core/layout/TextAutosizer.h" | 46 #include "core/layout/TextAutosizer.h" |
46 #include "core/layout/line/GlyphOverflow.h" | 47 #include "core/layout/line/GlyphOverflow.h" |
47 #include "core/layout/line/InlineIterator.h" | 48 #include "core/layout/line/InlineIterator.h" |
48 #include "core/layout/line/InlineTextBox.h" | 49 #include "core/layout/line/InlineTextBox.h" |
49 #include "core/layout/line/LineWidth.h" | 50 #include "core/layout/line/LineWidth.h" |
50 #include "core/layout/shapes/ShapeOutsideInfo.h" | 51 #include "core/layout/shapes/ShapeOutsideInfo.h" |
51 #include "core/paint/BlockFlowPaintInvalidator.h" | 52 #include "core/paint/BlockFlowPaintInvalidator.h" |
52 #include "core/paint/PaintLayer.h" | 53 #include "core/paint/PaintLayer.h" |
53 #include "platform/RuntimeEnabledFeatures.h" | 54 #include "platform/RuntimeEnabledFeatures.h" |
54 #include "wtf/PtrUtil.h" | 55 #include "wtf/PtrUtil.h" |
55 #include <memory> | |
56 | 56 |
57 namespace blink { | 57 namespace blink { |
58 | 58 |
59 bool LayoutBlockFlow::s_canPropagateFloatIntoSibling = false; | 59 bool LayoutBlockFlow::s_canPropagateFloatIntoSibling = false; |
60 | 60 |
61 struct SameSizeAsLayoutBlockFlow : public LayoutBlock { | 61 struct SameSizeAsLayoutBlockFlow : public LayoutBlock { |
62 LineBoxList lineBoxes; | 62 LineBoxList lineBoxes; |
63 void* pointers[2]; | 63 void* pointers[2]; |
64 }; | 64 }; |
65 | 65 |
(...skipping 4539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4605 return LayoutBlock::invalidatePaintIfNeeded(paintInvalidationState); | 4605 return LayoutBlock::invalidatePaintIfNeeded(paintInvalidationState); |
4606 } | 4606 } |
4607 | 4607 |
4608 void LayoutBlockFlow::invalidateDisplayItemClients( | 4608 void LayoutBlockFlow::invalidateDisplayItemClients( |
4609 PaintInvalidationReason invalidationReason) const { | 4609 PaintInvalidationReason invalidationReason) const { |
4610 BlockFlowPaintInvalidator(*this).invalidateDisplayItemClients( | 4610 BlockFlowPaintInvalidator(*this).invalidateDisplayItemClients( |
4611 invalidationReason); | 4611 invalidationReason); |
4612 } | 4612 } |
4613 | 4613 |
4614 } // namespace blink | 4614 } // namespace blink |
OLD | NEW |