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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp

Issue 1397583002: Implement the framework for a paint property hierarchy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Job insecurity: better tests, better comments, better names. Created 5 years, 2 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
Index: third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp
index 7e8a0df4efade04df60f6454405f74f0c0962658..b4b9c844619fa3f0c551bddae35ca88d4d9d3c2c 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemList.cpp
@@ -99,9 +99,9 @@ void DisplayItemList::processNewItem(DisplayItem& displayItem)
m_newPaintChunks.incrementDisplayItemIndex();
}
-void DisplayItemList::updateCurrentPaintProperties(const PaintProperties& newPaintProperties)
+void DisplayItemList::updateCurrentPaintChunkProperties(const PaintChunkProperties& newProperties)
{
- m_newPaintChunks.updateCurrentPaintProperties(newPaintProperties);
+ m_newPaintChunks.updateCurrentPaintChunkProperties(newProperties);
}
void DisplayItemList::beginScope()

Powered by Google App Engine
This is Rietveld 408576698