Index: Source/web/WebPageSerializerImpl.cpp |
diff --git a/Source/web/WebPageSerializerImpl.cpp b/Source/web/WebPageSerializerImpl.cpp |
index 28803d4b0731a407fe874bb9371f405b77140812..a1767c7168d1daa34a048390cfad264a59991cf8 100644 |
--- a/Source/web/WebPageSerializerImpl.cpp |
+++ b/Source/web/WebPageSerializerImpl.cpp |
@@ -473,7 +473,7 @@ void WebPageSerializerImpl::collectTargetFrames() |
// Get current using document. |
Document* currentDoc = currentFrame->frame()->document(); |
// Go through sub-frames. |
- RefPtrWillBeRawPtr<HTMLCollection> all = currentDoc->all(); |
+ RefPtrWillBeRawPtr<HTMLAllCollection> all = currentDoc->all(); |
for (unsigned i = 0; Element* element = all->item(i); ++i) { |
if (!element->isHTMLElement()) |