diff options
author | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-08 05:01:00 +0000 |
---|---|---|
committer | mnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-08 05:01:00 +0000 |
commit | 30aaf483c173bf7dec1f46335a7d086aaf1c1ac5 (patch) | |
tree | 89960ea74329ac779c23d0611696045076da5598 /webkit/glue/devtools/debugger_agent_impl.h | |
parent | 7916d1e915a6e20503c3bb2c034f1487203d85e3 (diff) | |
download | chromium_src-30aaf483c173bf7dec1f46335a7d086aaf1c1ac5.zip chromium_src-30aaf483c173bf7dec1f46335a7d086aaf1c1ac5.tar.gz chromium_src-30aaf483c173bf7dec1f46335a7d086aaf1c1ac5.tar.bz2 |
DevTools: make possible profiling of scripts doing heavy calculations.
Start / stop profiling commands are now sent using debugger protocol,
effectively breaking into script execution. Getting profiler log and
active modules is executed on IO thread.
BUG=28689
TEST=none
Review URL: http://codereview.chromium.org/460018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34040 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/devtools/debugger_agent_impl.h')
-rw-r--r-- | webkit/glue/devtools/debugger_agent_impl.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/webkit/glue/devtools/debugger_agent_impl.h b/webkit/glue/devtools/debugger_agent_impl.h index 96400f8..46aa990 100644 --- a/webkit/glue/devtools/debugger_agent_impl.h +++ b/webkit/glue/devtools/debugger_agent_impl.h @@ -38,14 +38,6 @@ class DebuggerAgentImpl : public DebuggerAgent { // DebuggerAgent implementation. virtual void GetContextId(); - virtual void StartProfiling(int flags); - - virtual void StopProfiling(int flags); - - virtual void GetActiveProfilerModules(); - - virtual void GetNextLogLines(); - void DebuggerOutput(const WebCore::String& out); void set_auto_continue_on_exception(bool auto_continue) { @@ -80,7 +72,6 @@ class DebuggerAgentImpl : public DebuggerAgent { WebKit::WebViewImpl* web_view_impl_; DebuggerAgentDelegate* delegate_; WebDevToolsAgentImpl* webdevtools_agent_; - int profiler_log_position_; bool auto_continue_on_exception_; }; |