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

Unified Diff: webkit/glue/dom_serializer_unittest.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_serializer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/dom_serializer_unittest.cc
diff --git a/webkit/glue/dom_serializer_unittest.cc b/webkit/glue/dom_serializer_unittest.cc
index 67cb4e9f19bc06f9e7fd2bae8dd9aa162ecd72a8..449227e4ec0d7cc7cda8db577eb70dafa2fea402 100644
--- a/webkit/glue/dom_serializer_unittest.cc
+++ b/webkit/glue/dom_serializer_unittest.cc
@@ -12,7 +12,7 @@ MSVC_PUSH_WARNING_LEVEL(0);
#include "Element.h"
#include "FrameLoader.h"
#include "FrameView.h"
-#include "HTMLCollection.h"
+#include "HTMLAllCollection.h"
#include "HTMLHeadElement.h"
#include "HTMLMetaElement.h"
#include "HTMLNames.h"
@@ -672,7 +672,7 @@ TEST_F(DomSerializerTests, SerialzeHTMLDOMWithBaseTag) {
WebCore::Document* doc = web_frame->frame()->document();
ASSERT_TRUE(doc->isHTMLDocument());
// Go through all descent nodes.
- RefPtr<WebCore::HTMLCollection> all = doc->all();
+ RefPtr<WebCore::HTMLAllCollection> all = doc->all();
int original_base_tag_count = 0;
for (WebCore::Node* node = all->firstItem(); node != NULL;
node = all->nextItem()) {
« no previous file with comments | « webkit/glue/dom_serializer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698