summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/devtools_agent.h
diff options
context:
space:
mode:
authoryurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 14:26:40 +0000
committeryurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 14:26:40 +0000
commit24b3b4de275cd9d9970c2f14d47ada7612043b06 (patch)
tree5b1b9da85194666ca1ffb9b13c7672c5724e7129 /chrome/renderer/devtools_agent.h
parentb4a2a3064c780cb1a092b192c8badb884eb1544d (diff)
downloadchromium_src-24b3b4de275cd9d9970c2f14d47ada7612043b06.zip
chromium_src-24b3b4de275cd9d9970c2f14d47ada7612043b06.tar.gz
chromium_src-24b3b4de275cd9d9970c2f14d47ada7612043b06.tar.bz2
1. Supported removal of breakpoints from UI.
2. Fixed bug in resume debugger functionality. 3. Implemented pause in debugger. 4. Removed deprecated messages and their handlers. Review URL: http://codereview.chromium.org/60012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12952 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/devtools_agent.h')
-rw-r--r--chrome/renderer/devtools_agent.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/renderer/devtools_agent.h b/chrome/renderer/devtools_agent.h
index c5866e5..24bba31 100644
--- a/chrome/renderer/devtools_agent.h
+++ b/chrome/renderer/devtools_agent.h
@@ -12,7 +12,6 @@
#include "base/scoped_ptr.h"
#include "chrome/common/ipc_channel_proxy.h"
#include "chrome/renderer/devtools_messages.h"
-#include "webkit/glue/debugger_bridge.h"
#include "webkit/glue/webdevtoolsagent_delegate.h"
class MessageLoop;
@@ -24,7 +23,6 @@ class WebDevToolsAgent;
// go through browser process. On the renderer side of the tools UI there's
// a corresponding ToolsClient object.
class DevToolsAgent : public IPC::ChannelProxy::MessageFilter,
- public DebuggerBridge::Delegate,
public WebDevToolsAgentDelegate {
public:
// DevToolsAgent is a field of the RenderView. The view is supposed to remove
@@ -52,9 +50,6 @@ class DevToolsAgent : public IPC::ChannelProxy::MessageFilter,
virtual bool OnMessageReceived(const IPC::Message& message);
virtual void OnFilterRemoved();
- // Debugger::Delegate callback method to handle debugger output.
- void DebuggerOutput(const std::wstring& out);
-
void Attach();
void Detach();
void DispatchRpcMessage(const std::string& raw_msg);
@@ -68,16 +63,10 @@ class DevToolsAgent : public IPC::ChannelProxy::MessageFilter,
// handle debug messages even when v8 is stopped.
void OnAttach();
void OnDetach();
- void OnDebugAttach();
- void OnDebugDetach();
- void OnDebugBreak(bool force);
- void OnDebugCommand(const std::wstring& cmd);
void OnRpcMessage(const std::string& raw_msg);
void OnDebuggerCommand(const std::string& command);
void OnInspectElement(int x, int y);
- scoped_refptr<DebuggerBridge> debugger_;
-
int routing_id_; // View routing id that we can access from IO thread.
RenderView* view_;
MessageLoop* view_loop_;