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

Unified Diff: webkit/glue/dom_serializer.cc

Issue 330011: WebKit update 49997:50027. (Closed)
Patch Set: Created 11 years, 2 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 | « webkit/glue/dom_operations.cc ('k') | webkit/glue/dom_serializer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/dom_serializer.cc
diff --git a/webkit/glue/dom_serializer.cc b/webkit/glue/dom_serializer.cc
index a1fb29daf74161df0c268cf46c00081cc2426326..a4a068354e6915ac5694bc3c115f5c37d6734f2d 100644
--- a/webkit/glue/dom_serializer.cc
+++ b/webkit/glue/dom_serializer.cc
@@ -58,7 +58,7 @@ MSVC_PUSH_WARNING_LEVEL(0);
#include "FrameLoader.h"
#include "Document.h"
#include "Element.h"
-#include "HTMLCollection.h"
+#include "HTMLAllCollection.h"
#include "HTMLElement.h"
#include "HTMLFormElement.h"
#include "HTMLMetaElement.h"
@@ -543,7 +543,7 @@ void DomSerializer::CollectTargetFrames() {
// Get current using document.
WebCore::Document* current_doc = current_frame->frame()->document();
// Go through sub-frames.
- RefPtr<WebCore::HTMLCollection> all = current_doc->all();
+ RefPtr<WebCore::HTMLAllCollection> all = current_doc->all();
for (WebCore::Node* node = all->firstItem(); node != NULL;
node = all->nextItem()) {
if (!node->isHTMLElement())
« no previous file with comments | « webkit/glue/dom_operations.cc ('k') | webkit/glue/dom_serializer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698