| Index: third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
|
| index 189f518f0ff1caa55818134ee1a4048685424bb9..5d90c0a9873b9913d2956c639a39044fbbeca3fb 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/GraphicsLayer.cpp
|
| @@ -238,7 +238,7 @@ void GraphicsLayer::addChildBelow(GraphicsLayer* childLayer,
|
|
|
| void GraphicsLayer::removeAllChildren() {
|
| while (!m_children.isEmpty()) {
|
| - GraphicsLayer* curLayer = m_children.last();
|
| + GraphicsLayer* curLayer = m_children.back();
|
| ASSERT(curLayer->parent());
|
| curLayer->removeFromParent();
|
| }
|
|
|