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

Unified Diff: third_party/WebKit/Source/platform/graphics/compositing/PaintChunksToCcLayer.cpp

Issue 2751433002: [SPv2] Flatten property trees in PaintRecordBuilder into a single display list. (Closed)
Patch Set: none Created 3 years, 9 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/compositing/PaintChunksToCcLayer.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintChunksToCcLayer.cpp b/third_party/WebKit/Source/platform/graphics/compositing/PaintChunksToCcLayer.cpp
index 0d3fd717efb7d4de8266008772d6e87c9aa5290a..1604b7b12c6126689fe47901e9fc46767c02f9a9 100644
--- a/third_party/WebKit/Source/platform/graphics/compositing/PaintChunksToCcLayer.cpp
+++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintChunksToCcLayer.cpp
@@ -212,7 +212,7 @@ scoped_refptr<cc::DisplayItemList> PaintChunksToCcLayer::convert(
ccList->CreateAndAppendPairedBeginItem<cc::TransformDisplayItem>(
counterOffset);
- for (const auto& paintChunk : paintChunks) {
+ for (const auto* paintChunk : paintChunks) {
const PropertyTreeState* state = &paintChunk->properties.propertyTreeState;
PropertyTreeStateIterator iterator(*state);
Vector<PropertyTreeState> pairedStates;

Powered by Google App Engine
This is Rietveld 408576698