| Index: webkit/glue/webdevtoolsagent_impl.cc
|
| ===================================================================
|
| --- webkit/glue/webdevtoolsagent_impl.cc (revision 21636)
|
| +++ webkit/glue/webdevtoolsagent_impl.cc (working copy)
|
| @@ -213,6 +213,15 @@
|
| result, exception);
|
| }
|
|
|
| +void WebDevToolsAgentImpl::EvaluateJavaScript(
|
| + int call_id,
|
| + const WebCore::String& source) {
|
| + String exception;
|
| + String result = debugger_agent_impl_->EvaluateJavaScript(utility_context_,
|
| + source, &exception);
|
| + tools_agent_delegate_stub_->DidEvaluateJavaScript(call_id, result, exception);
|
| +}
|
| +
|
| void WebDevToolsAgentImpl::ClearConsoleMessages() {
|
| Page* page = web_view_impl_->page();
|
| if (page) {
|
|
|