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

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

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 8 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/LayoutTableCol.cpp ('k') | Source/core/layout/LayoutTableRow.cpp » ('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) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2013 Apple Inc. All rights reserv ed. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2013 Apple Inc. All rights reserv ed.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 if (hasOverflowClip()) 115 if (hasOverflowClip())
116 return OverflowClipDeprecatedPaintLayer; 116 return OverflowClipDeprecatedPaintLayer;
117 117
118 return NoDeprecatedPaintLayer; 118 return NoDeprecatedPaintLayer;
119 } 119 }
120 120
121 virtual void paint(const PaintInfo&, const LayoutPoint&) override; 121 virtual void paint(const PaintInfo&, const LayoutPoint&) override;
122 122
123 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override; 123 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override;
124 124
125 virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) ov erride; 125 virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
126 126
127 void nextSibling() const = delete; 127 void nextSibling() const = delete;
128 void previousSibling() const = delete; 128 void previousSibling() const = delete;
129 129
130 LayoutObjectChildList m_children; 130 LayoutObjectChildList m_children;
131 unsigned m_rowIndex : 31; 131 unsigned m_rowIndex : 31;
132 }; 132 };
133 133
134 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableRow, isTableRow()); 134 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTableRow, isTableRow());
135 135
(...skipping 15 matching lines...) Expand all
151 151
152 inline LayoutTableRow* LayoutTableSection::lastRow() const 152 inline LayoutTableRow* LayoutTableSection::lastRow() const
153 { 153 {
154 ASSERT(children() == virtualChildren()); 154 ASSERT(children() == virtualChildren());
155 return toLayoutTableRow(children()->lastChild()); 155 return toLayoutTableRow(children()->lastChild());
156 } 156 }
157 157
158 } // namespace blink 158 } // namespace blink
159 159
160 #endif // LayoutTableRow_h 160 #endif // LayoutTableRow_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutTableCol.cpp ('k') | Source/core/layout/LayoutTableRow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698