Commit 8103c963 authored by sigbjornf@opera.com's avatar sigbjornf@opera.com

Oilpan: fix build after r183736.

TBR=haraken,oilpan-reviews
BUG=397902
NOTRY=true

Review URL: https://codereview.chromium.org/656093002

git-svn-id: svn://svn.chromium.org/blink/trunk@183740 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 9f4132dd
......@@ -44,7 +44,7 @@ SVGCursorElement::~SVGCursorElement()
{
// The below teardown is all handled by weak pointer processing in oilpan.
#if !ENABLE(OILPAN)
for (auto& client : m_clients)
for (const auto& client : m_clients)
client->cursorElementRemoved();
#endif
}
......@@ -98,7 +98,7 @@ void SVGCursorElement::svgAttributeChanged(const QualifiedName& attrName)
SVGElement::InvalidationGuard invalidationGuard(this);
// Any change of a cursor specific attribute triggers this recalc.
for (auto& client : m_clients)
for (const auto& client : m_clients)
client->setNeedsStyleRecalc(SubtreeStyleChange, StyleChangeReasonForTracing::create(StyleChangeReason::SVGCursor));
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment