summaryrefslogtreecommitdiffstats
path: root/webkit/glue/devtools/dom_agent_impl.cc
diff options
context:
space:
mode:
authorplaymobil@google.com <playmobil@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-31 15:56:59 +0000
committerplaymobil@google.com <playmobil@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-31 15:56:59 +0000
commite8904383d516cef2b67845e79009de90f78dbb6a (patch)
tree9165f4390d4ac27984666e83c77deb1c9befd632 /webkit/glue/devtools/dom_agent_impl.cc
parent4ecd074560bcbeb46cb9c0a328f32df433d671d9 (diff)
downloadchromium_src-e8904383d516cef2b67845e79009de90f78dbb6a.zip
chromium_src-e8904383d516cef2b67845e79009de90f78dbb6a.tar.gz
chromium_src-e8904383d516cef2b67845e79009de90f78dbb6a.tar.bz2
Chrome side of WebKit merge 42026:42115
Review URL: http://codereview.chromium.org/57033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12861 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/devtools/dom_agent_impl.cc')
-rw-r--r--webkit/glue/devtools/dom_agent_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/devtools/dom_agent_impl.cc b/webkit/glue/devtools/dom_agent_impl.cc
index d946a7e..a3a3d75 100644
--- a/webkit/glue/devtools/dom_agent_impl.cc
+++ b/webkit/glue/devtools/dom_agent_impl.cc
@@ -480,7 +480,7 @@ ListValue* DomAgentImpl::BuildValueForNode(Node* node, int depth) {
ListValue* DomAgentImpl::BuildValueForElementAttributes(Element* element) {
OwnPtr<ListValue> attributesValue(new ListValue());
// Go through all attributes and serialize them.
- const NamedAttrMap *attrMap = element->attributes(true);
+ const NamedNodeMap *attrMap = element->attributes(true);
if (!attrMap) {
return attributesValue.release();
}