Index: WebCore/svg/SVGElement.cpp |
=================================================================== |
--- WebCore/svg/SVGElement.cpp (revision 67107) |
+++ WebCore/svg/SVGElement.cpp (working copy) |
@@ -287,12 +287,12 @@ |
if (!extensions->isPendingResource(resourceId)) |
return; |
- OwnPtr<HashSet<SVGStyledElement*> > clients(extensions->removePendingResource(resourceId)); |
+ OwnPtr<SVGDocumentExtensions::SVGPendingElements> clients(extensions->removePendingResource(resourceId)); |
if (clients->isEmpty()) |
return; |
- const HashSet<SVGStyledElement*>::const_iterator end = clients->end(); |
- for (HashSet<SVGStyledElement*>::const_iterator it = clients->begin(); it != end; ++it) |
+ const SVGDocumentExtensions::SVGPendingElements::const_iterator end = clients->end(); |
+ for (SVGDocumentExtensions::SVGPendingElements::const_iterator it = clients->begin(); it != end; ++it) |
(*it)->buildPendingResource(); |
} |