From 64df1ae542f869814a4f8005d900106590a3169e Mon Sep 17 00:00:00 2001 From: "loislo@chromium.org" Date: Thu, 24 Feb 2011 11:57:03 +0000 Subject: [PATCH] 2011-02-24 Ilya Tikhonovsky 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 --- Source/WebCore/ChangeLog | 11 +++++++++++ Source/WebCore/inspector/InspectorDOMAgent.cpp | 2 +- Source/WebCore/inspector/InspectorResourceAgent.cpp | 2 +- Source/WebCore/inspector/InspectorRuntimeAgent.cpp | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 0289e290e164..8550e625f2a3 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,14 @@ +2011-02-24 Ilya Tikhonovsky + + 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 Reviewed by Eric Seidel. diff --git a/Source/WebCore/inspector/InspectorDOMAgent.cpp b/Source/WebCore/inspector/InspectorDOMAgent.cpp index ca757e6175cb..40254204889a 100644 --- a/Source/WebCore/inspector/InspectorDOMAgent.cpp +++ b/Source/WebCore/inspector/InspectorDOMAgent.cpp @@ -476,7 +476,7 @@ void InspectorDOMAgent::setAttribute(ErrorString*, long elementId, const String& } } -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)) { diff --git a/Source/WebCore/inspector/InspectorResourceAgent.cpp b/Source/WebCore/inspector/InspectorResourceAgent.cpp index ae3e46c7e2ed..9c24341c74eb 100644 --- a/Source/WebCore/inspector/InspectorResourceAgent.cpp +++ b/Source/WebCore/inspector/InspectorResourceAgent.cpp @@ -498,7 +498,7 @@ Frame* InspectorResourceAgent::frameForId(unsigned long frameId) return 0; } -void InspectorResourceAgent::cachedResources(ErrorString* error, RefPtr* object) +void InspectorResourceAgent::cachedResources(ErrorString*, RefPtr* object) { *object = buildObjectForFrameTree(m_page->mainFrame(), true); } diff --git a/Source/WebCore/inspector/InspectorRuntimeAgent.cpp b/Source/WebCore/inspector/InspectorRuntimeAgent.cpp index 6cdf7c2cbc05..fd79e5cc6c89 100644 --- a/Source/WebCore/inspector/InspectorRuntimeAgent.cpp +++ b/Source/WebCore/inspector/InspectorRuntimeAgent.cpp @@ -45,7 +45,7 @@ InspectorRuntimeAgent::InspectorRuntimeAgent(InjectedScriptHost* injectedScriptH InspectorRuntimeAgent::~InspectorRuntimeAgent() { } -void InspectorRuntimeAgent::evaluate(ErrorString* error, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr* result) +void InspectorRuntimeAgent::evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr* result) { InjectedScript injectedScript = m_injectedScriptHost->injectedScriptForMainFrame(); if (!injectedScript.hasNoValue()) -- 2.36.0