summaryrefslogtreecommitdiffstats
path: root/webkit/glue/devtools/debugger_agent_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/devtools/debugger_agent_manager.cc')
-rw-r--r--webkit/glue/devtools/debugger_agent_manager.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/devtools/debugger_agent_manager.cc b/webkit/glue/devtools/debugger_agent_manager.cc
index 102224f..d2f41d3 100644
--- a/webkit/glue/devtools/debugger_agent_manager.cc
+++ b/webkit/glue/devtools/debugger_agent_manager.cc
@@ -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 @@ void DebuggerAgentManager::OnV8DebugMessage(const v8::Debug::Message& message) {
// 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 @@ void DebuggerAgentManager::SetHostId(WebFrameImpl* webframe, int host_id) {
DCHECK(host_id > 0);
WebCore::V8Proxy* proxy = WebCore::V8Proxy::retrieve(webframe->frame());
if (proxy) {
- proxy->SetContextDebugId(host_id);
+ proxy->setContextDebugId(host_id);
}
}