Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(734)

Unified Diff: webkit/glue/devtools/debugger_agent_manager.cc

Issue 149086: Use upstream V8Proxy and V8Utilities (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/devtools/debugger_agent_impl.cc ('k') | webkit/glue/npruntime_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
}
« no previous file with comments | « webkit/glue/devtools/debugger_agent_impl.cc ('k') | webkit/glue/npruntime_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698