diff options
author | dglazkov@chromium.org <dglazkov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-24 17:11:50 +0000 |
---|---|---|
committer | dglazkov@chromium.org <dglazkov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-24 17:11:50 +0000 |
commit | 1ef6c06a097db0fdba2947ddb1c73a1f091dd4dc (patch) | |
tree | 6e9f1e2194e01c841eaf4ddfd342ed25faae31ec /webkit/glue | |
parent | e9eb50ca6ab2cce6d067b67dd32fc7609f2cc35d (diff) | |
download | chromium_src-1ef6c06a097db0fdba2947ddb1c73a1f091dd4dc.zip chromium_src-1ef6c06a097db0fdba2947ddb1c73a1f091dd4dc.tar.gz chromium_src-1ef6c06a097db0fdba2947ddb1c73a1f091dd4dc.tar.bz2 |
WebKit update 49997:50027.
The changes accommodate fixing up HTMLAllCollection refactoring
upstream: http://trac.webkit.org/changeset/49998
TBR=tony
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/330011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30008 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/dom_operations.cc | 2 | ||||
-rw-r--r-- | webkit/glue/dom_serializer.cc | 4 | ||||
-rw-r--r-- | webkit/glue/dom_serializer_unittest.cc | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/webkit/glue/dom_operations.cc b/webkit/glue/dom_operations.cc index f859ce4..ba1e2bc 100644 --- a/webkit/glue/dom_operations.cc +++ b/webkit/glue/dom_operations.cc @@ -16,7 +16,7 @@ MSVC_PUSH_WARNING_LEVEL(0); #include "Element.h" #include "EventListener.h" #include "EventNames.h" -#include "HTMLCollection.h" +#include "HTMLAllCollection.h" #include "HTMLElement.h" #include "HTMLFormElement.h" #include "HTMLFrameOwnerElement.h" diff --git a/webkit/glue/dom_serializer.cc b/webkit/glue/dom_serializer.cc index a1fb29d..a4a0683 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()) diff --git a/webkit/glue/dom_serializer_unittest.cc b/webkit/glue/dom_serializer_unittest.cc index 67cb4e9..449227e 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()) { |