| Index: webkit/glue/devtools/debugger_agent_manager.cc
|
| ===================================================================
|
| --- webkit/glue/devtools/debugger_agent_manager.cc (revision 19426)
|
| +++ webkit/glue/devtools/debugger_agent_manager.cc (working copy)
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "Frame.h"
|
| #include "PageGroupLoadDeferrer.h"
|
| -#include "v8_proxy.h"
|
| +#include "V8Proxy.h"
|
| #include <wtf/HashSet.h>
|
| #undef LOG
|
|
|
| @@ -188,7 +188,7 @@
|
|
|
| // If the context is from one of the inpected tabs or injected extension
|
| // scripts it must have host_id in the data field.
|
| - int host_id = WebCore::V8Proxy::GetContextDebugId(context);
|
| + int host_id = WebCore::V8Proxy::contextDebugId(context);
|
| if (host_id != -1) {
|
| DebuggerAgentImpl* agent = DebuggerAgentForHostId(host_id);
|
| if (agent) {
|
| @@ -222,7 +222,7 @@
|
| DCHECK(host_id > 0);
|
| WebCore::V8Proxy* proxy = WebCore::V8Proxy::retrieve(webframe->frame());
|
| if (proxy) {
|
| - proxy->SetContextDebugId(host_id);
|
| + proxy->setContextDebugId(host_id);
|
| }
|
| }
|
|
|
|
|