Clang build fix
authoraroben@apple.com <aroben@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 20 Feb 2012 14:51:17 +0000 (14:51 +0000)
committeraroben@apple.com <aroben@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 20 Feb 2012 14:51:17 +0000 (14:51 +0000)
* inspector/InspectorDOMAgent.cpp:
(WebCore::InspectorDOMAgent::willModifyDOMAttr): Removed unused parameter.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@108238 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/inspector/InspectorDOMAgent.cpp

index 0346700..d0c0e16 100644 (file)
@@ -1,3 +1,10 @@
+2012-02-20  Adam Roben  <aroben@apple.com>
+
+        Clang build fix
+
+        * inspector/InspectorDOMAgent.cpp:
+        (WebCore::InspectorDOMAgent::willModifyDOMAttr): Removed unused parameter.
+
 2012-02-20  Vsevolod Vlasov  <vsevik@chromium.org>
 
         Unreviewed manual rollout of r107970 which breaks table column widths
index e9a10d0..0dea859 100644 (file)
@@ -1402,7 +1402,7 @@ void InspectorDOMAgent::didRemoveDOMNode(Node* node)
     unbind(node, &m_documentNodeToIdMap);
 }
 
-void InspectorDOMAgent::willModifyDOMAttr(Element* element, const AtomicString& oldValue, const AtomicString& newValue)
+void InspectorDOMAgent::willModifyDOMAttr(Element*, const AtomicString& oldValue, const AtomicString& newValue)
 {
     m_suppressAttributeModifiedEvent = (oldValue == newValue);
 }