diff options
author | yurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-24 13:10:26 +0000 |
---|---|---|
committer | yurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-24 13:10:26 +0000 |
commit | 0069c61344c4ccc408693e1e43bc402dbfbc93ed (patch) | |
tree | 5c8df3ce2c6297b85cdb8692244007dc661c2a19 /webkit/glue/webdevtoolsagent_impl.h | |
parent | a1d9d8c220f788dfda22a6bc2b6a1ca85a1b6181 (diff) | |
download | chromium_src-0069c61344c4ccc408693e1e43bc402dbfbc93ed.zip chromium_src-0069c61344c4ccc408693e1e43bc402dbfbc93ed.tar.gz chromium_src-0069c61344c4ccc408693e1e43bc402dbfbc93ed.tar.bz2 |
DevTools: split console evaluation into two steps: actual evaluation and result wrapping. When second step is executed debugger_agent_manager will autocontinue on break. We assume that second step doesn't call user scripts.
Review URL: http://codereview.chromium.org/160012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21525 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webdevtoolsagent_impl.h')
-rw-r--r-- | webkit/glue/webdevtoolsagent_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/glue/webdevtoolsagent_impl.h b/webkit/glue/webdevtoolsagent_impl.h index 599bc0f..d06705e 100644 --- a/webkit/glue/webdevtoolsagent_impl.h +++ b/webkit/glue/webdevtoolsagent_impl.h @@ -48,6 +48,9 @@ class WebDevToolsAgentImpl int call_id, const WebCore::String& function_name, const WebCore::String& json_args); + virtual void EvaluateJavaScript( + int call_id, + const WebCore::String& source); virtual void ClearConsoleMessages(); virtual void GetResourceContent( int call_id, |