| Index: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
|
| index 3ff56b2c1667d58a2a10b899ad302369a2aeb73a..3661cdbab587baee013f0a6ca78b7cab5c659a02 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositor.cpp
|
| @@ -371,7 +371,7 @@ class PropertyTreeManager {
|
| int compositorIdForClipNode(const ClipPaintPropertyNode*);
|
| int switchToEffectNode(const EffectPaintPropertyNode& nextEffect);
|
| int compositorIdForCurrentEffectNode() const {
|
| - return m_effectStack.last().id;
|
| + return m_effectStack.back().id;
|
| }
|
| int compositorIdForScrollNode(const ScrollPaintPropertyNode*);
|
|
|
| @@ -387,7 +387,7 @@ class PropertyTreeManager {
|
| cc::ScrollTree& scrollTree() { return m_propertyTrees.scroll_tree; }
|
|
|
| const EffectPaintPropertyNode* currentEffectNode() const {
|
| - return m_effectStack.last().effect;
|
| + return m_effectStack.back().effect;
|
| }
|
|
|
| // Property trees which should be updated by the manager.
|
|
|