diff options
author | japhet@chromium.org <japhet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-29 15:31:53 +0000 |
---|---|---|
committer | japhet@chromium.org <japhet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-29 15:31:53 +0000 |
commit | 162daa054276523dcbab30cb6c227f16abfd9c3b (patch) | |
tree | fee6a2aef24156a90f3918d36e052a525321dde1 /webkit/glue/devtools/debugger_agent_manager.cc | |
parent | d5d7ebfc24f9a90183cc8bfd16243d604b35730f (diff) | |
download | chromium_src-162daa054276523dcbab30cb6c227f16abfd9c3b.zip chromium_src-162daa054276523dcbab30cb6c227f16abfd9c3b.tar.gz chromium_src-162daa054276523dcbab30cb6c227f16abfd9c3b.tar.bz2 |
Use upstream V8Proxy and V8Utilities
BUG=15459
TEST=none
Review URL: http://codereview.chromium.org/149086
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19488 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/devtools/debugger_agent_manager.cc')
-rw-r--r-- | webkit/glue/devtools/debugger_agent_manager.cc | 6 |
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); } } |