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

Side by Side Diff: Source/core/layout/LayoutFlowThread.h

Issue 1320843005: Update outer flow thread membership before changing multicolness. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/layout/LayoutBox.cpp ('k') | Source/core/layout/LayoutMultiColumnFlowThread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2011 Adobe Systems Incorporated. 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 // can easily avoid drawing the children directly. 64 // can easily avoid drawing the children directly.
65 DeprecatedPaintLayerType layerTypeRequired() const final { return NormalDepr ecatedPaintLayer; } 65 DeprecatedPaintLayerType layerTypeRequired() const final { return NormalDepr ecatedPaintLayer; }
66 66
67 // Skip past a column spanner during flow thread layout. Spanners are not la id out inside the 67 // Skip past a column spanner during flow thread layout. Spanners are not la id out inside the
68 // flow thread, since the flow thread is not in a spanner's containing block chain (since the 68 // flow thread, since the flow thread is not in a spanner's containing block chain (since the
69 // containing block is the multicol container). 69 // containing block is the multicol container).
70 virtual void skipColumnSpanner(LayoutBox*, LayoutUnit logicalTopInFlowThread ) { } 70 virtual void skipColumnSpanner(LayoutBox*, LayoutUnit logicalTopInFlowThread ) { }
71 71
72 virtual void flowThreadDescendantWasInserted(LayoutObject*) { } 72 virtual void flowThreadDescendantWasInserted(LayoutObject*) { }
73 virtual void flowThreadDescendantWillBeRemoved(LayoutObject*) { } 73 virtual void flowThreadDescendantWillBeRemoved(LayoutObject*) { }
74 virtual void flowThreadDescendantStyleWillChange(LayoutObject*, StyleDiffere nce, const ComputedStyle& newStyle) { } 74 virtual void flowThreadDescendantStyleWillChange(LayoutBox*, StyleDifference , const ComputedStyle& newStyle) { }
75 virtual void flowThreadDescendantStyleDidChange(LayoutObject*, StyleDifferen ce, const ComputedStyle& oldStyle) { } 75 virtual void flowThreadDescendantStyleDidChange(LayoutBox*, StyleDifference, const ComputedStyle& oldStyle) { }
76 76
77 bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) final; 77 bool nodeAtPoint(HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) final;
78 78
79 virtual void addColumnSetToThread(LayoutMultiColumnSet*) = 0; 79 virtual void addColumnSetToThread(LayoutMultiColumnSet*) = 0;
80 virtual void removeColumnSetFromThread(LayoutMultiColumnSet*); 80 virtual void removeColumnSetFromThread(LayoutMultiColumnSet*);
81 81
82 void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, L ogicalExtentComputedValues&) const override; 82 void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, L ogicalExtentComputedValues&) const override;
83 83
84 bool hasColumnSets() const { return m_multiColumnSetList.size(); } 84 bool hasColumnSets() const { return m_multiColumnSetList.size(); }
85 85
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 }; 159 };
160 160
161 template <> struct ValueToString<LayoutMultiColumnSet*> { 161 template <> struct ValueToString<LayoutMultiColumnSet*> {
162 static String string(const LayoutMultiColumnSet* value) { return String::for mat("%p", value); } 162 static String string(const LayoutMultiColumnSet* value) { return String::for mat("%p", value); }
163 }; 163 };
164 #endif 164 #endif
165 165
166 } // namespace blink 166 } // namespace blink
167 167
168 #endif // LayoutFlowThread_h 168 #endif // LayoutFlowThread_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutBox.cpp ('k') | Source/core/layout/LayoutMultiColumnFlowThread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698