diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-27 20:42:34 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-27 20:42:34 +0000 |
commit | 2791f2f77db0017409d856f0aa74294f0db75d18 (patch) | |
tree | 8bdfe66156c515b194cf90149b79abe15d6340ce /webkit/glue/webdevtoolsagent_impl.h | |
parent | b3a9433df3d904e56410ef2878ea7364c6b28a70 (diff) | |
download | chromium_src-2791f2f77db0017409d856f0aa74294f0db75d18.zip chromium_src-2791f2f77db0017409d856f0aa74294f0db75d18.tar.gz chromium_src-2791f2f77db0017409d856f0aa74294f0db75d18.tar.bz2 |
DevTools: reset ScriptState in InspectorController on page refresh.
TBR=yurys
Review URL: http://codereview.chromium.org/178003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24653 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 af5b271..0df46d9 100644 --- a/webkit/glue/webdevtoolsagent_impl.h +++ b/webkit/glue/webdevtoolsagent_impl.h @@ -17,6 +17,7 @@ namespace WebCore { class Document; class Node; +class ScriptState; class String; } @@ -86,6 +87,7 @@ class WebDevToolsAgentImpl void UnhideResourcesPanelIfNecessary(); void InitDevToolsAgentHost(); + void ResetInspectorFrontendProxy(); int host_id_; WebDevToolsAgentDelegate* delegate_; @@ -99,6 +101,7 @@ class WebDevToolsAgentImpl // for matching rules. v8::Persistent<v8::Context> utility_context_; OwnPtr<BoundObject> devtools_agent_host_; + OwnPtr<WebCore::ScriptState> inspector_frontend_script_state_; DISALLOW_COPY_AND_ASSIGN(WebDevToolsAgentImpl); }; |