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

Unified Diff: chrome/renderer/devtools_agent_filter.cc

Issue 287009: Move WebDevToolsAgent{Delegate} into the WebKit API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « chrome/renderer/devtools_agent_filter.h ('k') | chrome/renderer/external_host_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/devtools_agent_filter.cc
===================================================================
--- chrome/renderer/devtools_agent_filter.cc (revision 29289)
+++ chrome/renderer/devtools_agent_filter.cc (working copy)
@@ -9,9 +9,10 @@
#include "chrome/renderer/devtools_agent.h"
#include "chrome/renderer/plugin_channel_host.h"
#include "chrome/renderer/render_view.h"
+#include "webkit/api/public/WebDevToolsAgent.h"
#include "webkit/api/public/WebString.h"
-#include "webkit/glue/webdevtoolsagent.h"
+using WebKit::WebDevToolsAgent;
using WebKit::WebString;
// static
@@ -25,7 +26,7 @@
DevToolsAgentFilter::DevToolsAgentFilter()
: current_routing_id_(0) {
- WebDevToolsAgent::SetMessageLoopDispatchHandler(
+ WebDevToolsAgent::setMessageLoopDispatchHandler(
&DevToolsAgentFilter::DispatchMessageLoop);
}
@@ -48,6 +49,6 @@
}
void DevToolsAgentFilter::OnDebuggerCommand(const std::string& command) {
- WebDevToolsAgent::ExecuteDebuggerCommand(
+ WebDevToolsAgent::executeDebuggerCommand(
WebString::fromUTF8(command), current_routing_id_);
}
« no previous file with comments | « chrome/renderer/devtools_agent_filter.h ('k') | chrome/renderer/external_host_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698