Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1110)

Unified Diff: Source/web/WebPageSerializerImpl.cpp

Issue 334713006: Use stricter typing for NodeLists throughout the code base (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebPageSerializer.cpp ('k') | Source/web/tests/TextFinderTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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())
« no previous file with comments | « Source/web/WebPageSerializer.cpp ('k') | Source/web/tests/TextFinderTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698