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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.h

Issue 2748973002: Strictly unbreakable objects need to prevent interaction with the outside. (Closed)
Patch Set: Created 3 years, 9 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 * Copyright (C) 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2012 Apple 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 bool columnHeightsChanged() const { return m_columnHeightsChanged; } 253 bool columnHeightsChanged() const { return m_columnHeightsChanged; }
254 void setColumnHeightsChanged() { m_columnHeightsChanged = true; } 254 void setColumnHeightsChanged() { m_columnHeightsChanged = true; }
255 255
256 void columnRuleStyleDidChange(); 256 void columnRuleStyleDidChange();
257 257
258 // Remove the spanner placeholder and return true if the specified object is 258 // Remove the spanner placeholder and return true if the specified object is
259 // no longer a valid spanner. 259 // no longer a valid spanner.
260 bool removeSpannerPlaceholderIfNoLongerValid( 260 bool removeSpannerPlaceholderIfNoLongerValid(
261 LayoutBox* spannerObjectInFlowThread); 261 LayoutBox* spannerObjectInFlowThread);
262 262
263 // Search mode when looking for an enclosing fragmentation context. 263 LayoutMultiColumnFlowThread* enclosingFlowThread(
264 enum AncestorSearchConstraint { 264 AncestorSearchConstraint = IsolateUnbreakableContainers) const;
265 // No constraints. Sometimes we just want to find all enclosing
266 // fragmentation contexts, e.g. to calculate the accumulated visual
267 // translation.
268 AnyAncestor,
269
270 // Consider fragmentation contexts that are strictly unbreakable (seen from
271 // the outside) to be isolated from the rest, so that such fragmentation
272 // contexts don't participate in fragmentation of enclosing fragmentation
273 // contexts, apart from taking up space and otherwise being completely
274 // unbreakable. This is typically what we want to do during layout.
275 IsolateUnbreakableContainers,
276 };
277 LayoutMultiColumnFlowThread* enclosingFlowThread() const;
278 FragmentationContext* enclosingFragmentationContext( 265 FragmentationContext* enclosingFragmentationContext(
279 AncestorSearchConstraint = IsolateUnbreakableContainers) const; 266 AncestorSearchConstraint = IsolateUnbreakableContainers) const;
280 LayoutUnit blockOffsetInEnclosingFragmentationContext() const { 267 LayoutUnit blockOffsetInEnclosingFragmentationContext() const {
281 DCHECK(enclosingFragmentationContext(AnyAncestor)); 268 DCHECK(enclosingFragmentationContext(AnyAncestor));
282 return m_blockOffsetInEnclosingFragmentationContext; 269 return m_blockOffsetInEnclosingFragmentationContext;
283 } 270 }
284 271
285 // If we've run out of columns in the last fragmentainer group (column row), 272 // If we've run out of columns in the last fragmentainer group (column row),
286 // we have to insert another fragmentainer group in order to hold more 273 // we have to insert another fragmentainer group in order to hold more
287 // columns. This means that we're moving to the next outer column (in the 274 // columns. This means that we're moving to the next outer column (in the
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 // LayoutObject. 371 // LayoutObject.
385 DEFINE_TYPE_CASTS(LayoutMultiColumnFlowThread, 372 DEFINE_TYPE_CASTS(LayoutMultiColumnFlowThread,
386 LayoutFlowThread, 373 LayoutFlowThread,
387 object, 374 object,
388 object->isLayoutMultiColumnFlowThread(), 375 object->isLayoutMultiColumnFlowThread(),
389 object.isLayoutMultiColumnFlowThread()); 376 object.isLayoutMultiColumnFlowThread());
390 377
391 } // namespace blink 378 } // namespace blink
392 379
393 #endif // LayoutMultiColumnFlowThread_h 380 #endif // LayoutMultiColumnFlowThread_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698