diff options
Diffstat (limited to 'webkit/glue/devtools/dom_agent_impl.cc')
-rw-r--r-- | webkit/glue/devtools/dom_agent_impl.cc | 2 |
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(); } |