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

Side by Side Diff: Source/core/rendering/RenderMultiColumnBlock.h

Issue 18601002: Add infrastructure for partial layouts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: define RenderObject::frameView in the header Created 7 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/rendering/RenderMeter.h ('k') | Source/core/rendering/RenderObject.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) 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 virtual const char* renderName() const; 52 virtual const char* renderName() const;
53 53
54 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, Subt reeLayoutScope&) OVERRIDE; 54 virtual RenderObject* layoutSpecialExcludedChild(bool relayoutChildren, Subt reeLayoutScope&) OVERRIDE;
55 55
56 virtual void styleDidChange(StyleDifference, const RenderStyle*) OVERRIDE; 56 virtual void styleDidChange(StyleDifference, const RenderStyle*) OVERRIDE;
57 57
58 virtual bool updateLogicalWidthAndColumnWidth() OVERRIDE; 58 virtual bool updateLogicalWidthAndColumnWidth() OVERRIDE;
59 virtual void checkForPaginationLogicalHeightChange(LayoutUnit& pageLogicalHe ight, bool& pageLogicalHeightChanged, bool& hasSpecifiedPageLogicalHeight) OVERR IDE; 59 virtual void checkForPaginationLogicalHeightChange(LayoutUnit& pageLogicalHe ight, bool& pageLogicalHeightChanged, bool& hasSpecifiedPageLogicalHeight) OVERR IDE;
60 virtual bool relayoutForPagination(bool hasSpecifiedPageLogicalHeight, Layou tUnit pageLogicalHeight, LayoutStateMaintainer&) OVERRIDE; 60 virtual bool relayoutForPagination(bool hasSpecifiedPageLogicalHeight, Layou tUnit pageLogicalHeight, LayoutStateMaintainer&) OVERRIDE;
61 61
62 virtual bool supportsPartialLayout() const OVERRIDE { return false; }
63
62 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0) OVERRIDE; 64 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0) OVERRIDE;
63 65
64 void computeColumnCountAndWidth(); 66 void computeColumnCountAndWidth();
65 67
66 void ensureColumnSets(); 68 void ensureColumnSets();
67 69
68 RenderMultiColumnFlowThread* m_flowThread; 70 RenderMultiColumnFlowThread* m_flowThread;
69 unsigned m_columnCount; // The default column count/width that are based o ff our containing block width. These values represent only the default, 71 unsigned m_columnCount; // The default column count/width that are based o ff our containing block width. These values represent only the default,
70 LayoutUnit m_columnWidth; // since a multi-column block that is split across variable width pages or regions will have different column counts and widths in each. 72 LayoutUnit m_columnWidth; // since a multi-column block that is split across variable width pages or regions will have different column counts and widths in each.
71 // These values will be cached (eventually) for mu lti-column blocks. 73 // These values will be cached (eventually) for mu lti-column blocks.
(...skipping 13 matching lines...) Expand all
85 return static_cast<const RenderMultiColumnBlock*>(object); 87 return static_cast<const RenderMultiColumnBlock*>(object);
86 } 88 }
87 89
88 // This will catch anyone doing an unnecessary cast. 90 // This will catch anyone doing an unnecessary cast.
89 void toRenderMultiColumnBlock(const RenderMultiColumnBlock*); 91 void toRenderMultiColumnBlock(const RenderMultiColumnBlock*);
90 92
91 } // namespace WebCore 93 } // namespace WebCore
92 94
93 #endif // RenderMultiColumnBlock_h 95 #endif // RenderMultiColumnBlock_h
94 96
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderMeter.h ('k') | Source/core/rendering/RenderObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698