diff options
Diffstat (limited to 'webkit/glue/devtools/debugger_agent_impl.cc')
-rw-r--r-- | webkit/glue/devtools/debugger_agent_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/devtools/debugger_agent_impl.cc b/webkit/glue/devtools/debugger_agent_impl.cc index b1378c6..e7308b4 100644 --- a/webkit/glue/devtools/debugger_agent_impl.cc +++ b/webkit/glue/devtools/debugger_agent_impl.cc @@ -172,7 +172,7 @@ String DebuggerAgentImpl::ExecuteUtilityFunction( v8::TryCatch try_catch; v8::Handle<v8::Value> res_obj = function->Call(context->Global(), 2, args); if (try_catch.HasCaught()) { - *exception = WebCore::toWebCoreString(try_catch.Message()->Get()); + *exception = WebCore::ToWebCoreString(try_catch.Message()->Get()); return ""; } else { v8::Handle<v8::String> res_json = v8::Handle<v8::String>::Cast(res_obj); |