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

Side by Side Diff: Source/core/rendering/RenderTableRow.cpp

Issue 332543002: Rename Repaint to Paint Invalidation Part 4 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/RenderTableCol.cpp ('k') | Source/core/rendering/RenderTableSection.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, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserved.
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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 cell->layout(); 172 cell->layout();
173 } 173 }
174 } 174 }
175 175
176 m_overflow.clear(); 176 m_overflow.clear();
177 addVisualEffectOverflow(); 177 addVisualEffectOverflow();
178 178
179 // We only ever need to issue paint invalidations if our cells didn't, which means that they didn't need 179 // We only ever need to issue paint invalidations if our cells didn't, which means that they didn't need
180 // layout, so we know that our bounds didn't change. This code is just makin g up for 180 // layout, so we know that our bounds didn't change. This code is just makin g up for
181 // the fact that we did not invalidate paints in setStyle() because we had a layout hint. 181 // the fact that we did not invalidate paints in setStyle() because we had a layout hint.
182 // We cannot call repaint() because our clippedOverflowRectForRepaint() is t aken from the 182 // We cannot call repaint() because our clippedOverflowRectForPaintInvalidat ion() is taken from the
183 // parent table, and being mid-layout, that is invalid. Instead, we issue pa int invalidations for our cells. 183 // parent table, and being mid-layout, that is invalid. Instead, we issue pa int invalidations for our cells.
184 if (selfNeedsLayout() && checkForRepaint()) { 184 if (selfNeedsLayout() && checkForPaintInvalidation()) {
185 for (RenderTableCell* cell = firstCell(); cell; cell = cell->nextCell()) { 185 for (RenderTableCell* cell = firstCell(); cell; cell = cell->nextCell()) {
186 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled()) { 186 if (RuntimeEnabledFeatures::repaintAfterLayoutEnabled()) {
187 // FIXME: Is this needed with Repaint After Layout? 187 // FIXME: Is this needed with Repaint After Layout?
188 cell->setShouldDoFullPaintInvalidationAfterLayout(true); 188 cell->setShouldDoFullPaintInvalidationAfterLayout(true);
189 } else { 189 } else {
190 cell->paintInvalidationForWholeRenderer(); 190 cell->paintInvalidationForWholeRenderer();
191 } 191 }
192 } 192 }
193 } 193 }
194 194
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 256
257 RenderTableRow* RenderTableRow::createAnonymousWithParentRenderer(const RenderOb ject* parent) 257 RenderTableRow* RenderTableRow::createAnonymousWithParentRenderer(const RenderOb ject* parent)
258 { 258 {
259 RenderTableRow* newRow = RenderTableRow::createAnonymous(&parent->document() ); 259 RenderTableRow* newRow = RenderTableRow::createAnonymous(&parent->document() );
260 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay( parent->style(), TABLE_ROW); 260 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay( parent->style(), TABLE_ROW);
261 newRow->setStyle(newStyle.release()); 261 newRow->setStyle(newStyle.release());
262 return newRow; 262 return newRow;
263 } 263 }
264 264
265 } // namespace WebCore 265 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderTableCol.cpp ('k') | Source/core/rendering/RenderTableSection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698