Unreviewed build fix.
* inspector/InspectorDOMAgent.cpp:
(WebCore::InspectorDOMAgent::removeAttribute):
* inspector/InspectorResourceAgent.cpp:
(WebCore::InspectorResourceAgent::cachedResources):
* inspector/InspectorRuntimeAgent.cpp:
(WebCore::InspectorRuntimeAgent::evaluate):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@79542
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-02-24 Ilya Tikhonovsky <loislo@chromium.org>
+
+ Unreviewed build fix.
+
+ * inspector/InspectorDOMAgent.cpp:
+ (WebCore::InspectorDOMAgent::removeAttribute):
+ * inspector/InspectorResourceAgent.cpp:
+ (WebCore::InspectorResourceAgent::cachedResources):
+ * inspector/InspectorRuntimeAgent.cpp:
+ (WebCore::InspectorRuntimeAgent::evaluate):
+
2011-02-24 Zan Dobersek <zandobersek@gmail.com>
Reviewed by Eric Seidel.
}
}
-void InspectorDOMAgent::removeAttribute(ErrorString* error, long elementId, const String& name, bool* success)
+void InspectorDOMAgent::removeAttribute(ErrorString*, long elementId, const String& name, bool* success)
{
Node* node = nodeForId(elementId);
if (node && (node->nodeType() == Node::ELEMENT_NODE)) {
return 0;
}
-void InspectorResourceAgent::cachedResources(ErrorString* error, RefPtr<InspectorObject>* object)
+void InspectorResourceAgent::cachedResources(ErrorString*, RefPtr<InspectorObject>* object)
{
*object = buildObjectForFrameTree(m_page->mainFrame(), true);
}
InspectorRuntimeAgent::~InspectorRuntimeAgent() { }
-void InspectorRuntimeAgent::evaluate(ErrorString* error, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorValue>* result)
+void InspectorRuntimeAgent::evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorValue>* result)
{
InjectedScript injectedScript = m_injectedScriptHost->injectedScriptForMainFrame();
if (!injectedScript.hasNoValue())