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

Unified Diff: Source/core/rendering/RenderListItem.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/rendering/RenderListBox.cpp ('k') | Source/core/rendering/RenderListMarker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderListItem.cpp
diff --git a/Source/core/rendering/RenderListItem.cpp b/Source/core/rendering/RenderListItem.cpp
index c3ad8fe70d62c0148b8522c84723e3e331bd6101..b3dc76bc93aebda38951c292d9221158d3fb7120 100644
--- a/Source/core/rendering/RenderListItem.cpp
+++ b/Source/core/rendering/RenderListItem.cpp
@@ -257,7 +257,7 @@ void RenderListItem::updateValue()
if (!m_hasExplicitValue) {
m_isValueUpToDate = false;
if (m_marker)
- m_marker->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
+ m_marker->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation();
}
}
@@ -448,7 +448,7 @@ const String& RenderListItem::markerText() const
void RenderListItem::explicitValueChanged()
{
if (m_marker)
- m_marker->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
+ m_marker->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation();
Node* listNode = enclosingList(this);
for (RenderListItem* item = this; item; item = nextListItem(listNode, item))
item->updateValue();
« no previous file with comments | « Source/core/rendering/RenderListBox.cpp ('k') | Source/core/rendering/RenderListMarker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698