summaryrefslogtreecommitdiffstats
path: root/base/debug/debugger.h
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-17 23:29:55 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-17 23:29:55 +0000
commit8a65f28ef02c68fa3d6d94fee19287723983f057 (patch)
treee1e4ce71fcd4ef713b39825001922cb3651385d7 /base/debug/debugger.h
parenta7cf736adbbf691ac85e6e7be5816cb4365cab98 (diff)
downloadchromium_src-8a65f28ef02c68fa3d6d94fee19287723983f057.zip
chromium_src-8a65f28ef02c68fa3d6d94fee19287723983f057.tar.gz
chromium_src-8a65f28ef02c68fa3d6d94fee19287723983f057.tar.bz2
Remove --debug-on-start and --debug-children.
debug_on_start_win.cc also had some code to support --wait-for-debugger, but I don't think it's important to preserve it. This would only have any effect in modules which included debug_on_start.h, which was basically just test code; and it also wouldn't have any effect when the component build is enabled, which I suspect is true for most developers trying to run tests. I didn't remove any of the other pieces of --wait-for-debugger elsewhere. BUG=359822 TEST=none R=darin@chromium.org Review URL: https://codereview.chromium.org/227723008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264671 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/debug/debugger.h')
-rw-r--r--base/debug/debugger.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/base/debug/debugger.h b/base/debug/debugger.h
index 4f368d9..d62ea3f 100644
--- a/base/debug/debugger.h
+++ b/base/debug/debugger.h
@@ -14,10 +14,6 @@
namespace base {
namespace debug {
-// Starts the registered system-wide JIT debugger to attach it to specified
-// process.
-BASE_EXPORT bool SpawnDebuggerOnProcess(unsigned process_id);
-
// Waits wait_seconds seconds for a debugger to attach to the current process.
// When silent is false, an exception is thrown when a debugger is detected.
BASE_EXPORT bool WaitForDebugger(int wait_seconds, bool silent);