summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/debugger_wrapper.h
diff options
context:
space:
mode:
authorpfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-24 09:45:02 +0000
committerpfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-24 09:45:02 +0000
commit58bfc6b074bf05e36f02a4349a6217b95f3b9c2c (patch)
tree2b2c7efa3330c70ef019a539481595e38f6f6347 /chrome/browser/debugger/debugger_wrapper.h
parentea36e32155bfe33d4cad2fbfeffc54edc7de1cb3 (diff)
downloadchromium_src-58bfc6b074bf05e36f02a4349a6217b95f3b9c2c.zip
chromium_src-58bfc6b074bf05e36f02a4349a6217b95f3b9c2c.tar.gz
chromium_src-58bfc6b074bf05e36f02a4349a6217b95f3b9c2c.tar.bz2
DevTools: Nuke legacy debugger.
Review URL: http://codereview.chromium.org/146027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19108 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/debugger/debugger_wrapper.h')
-rw-r--r--chrome/browser/debugger/debugger_wrapper.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/chrome/browser/debugger/debugger_wrapper.h b/chrome/browser/debugger/debugger_wrapper.h
index 943b816..1a29566 100644
--- a/chrome/browser/debugger/debugger_wrapper.h
+++ b/chrome/browser/debugger/debugger_wrapper.h
@@ -5,15 +5,6 @@
// Include this file if you need to access the Debugger outside of the debugger
// project. Don't include debugger.h directly. If there's functionality from
// Debugger needed, add new wrapper methods to this file.
-//
-// This is a workaround to enable the Debugger without breaking the KJS build.
-// It wraps all methods in Debugger which are called from outside of the
-// debugger project. Each solution has its own project with debugger files.
-// KJS has only debugger_wrapper* and debugger.h, and defines
-// CHROME_DEBUGGER_DISABLED, which makes it compile only a stub version of
-// Debugger that doesn't reference V8. Meanwhile the V8 solution includes all
-// of the debugger files without CHROME_DEBUGGER_DISABLED so the full
-// functionality is enabled.
#ifndef CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
#define CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
@@ -33,16 +24,7 @@ class DebuggerWrapper : public base::RefCountedThreadSafe<DebuggerWrapper> {
virtual ~DebuggerWrapper();
- void SetDebugger(DebuggerHost* debugger);
- DebuggerHost* GetDebugger();
-
- void DebugMessage(const std::wstring& msg);
-
- void OnDebugAttach();
- void OnDebugDisconnect();
-
private:
- scoped_refptr<DebuggerHost> debugger_;
scoped_refptr<DevToolsProtocolHandler> proto_handler_;
};