diff options
author | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-29 15:16:51 +0000 |
---|---|---|
committer | pfeldman@chromium.org <pfeldman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-29 15:16:51 +0000 |
commit | d43c374dc64085f100a65698d5b88387694c4232 (patch) | |
tree | cf54cfdbd09539f659dd36df0aa2466e751c0a79 /webkit/glue/webdevtoolsagent_impl.h | |
parent | 0b5f62f66a72fb3b1ae447637a492960d6de517c (diff) | |
download | chromium_src-d43c374dc64085f100a65698d5b88387694c4232.zip chromium_src-d43c374dc64085f100a65698d5b88387694c4232.tar.gz chromium_src-d43c374dc64085f100a65698d5b88387694c4232.tar.bz2 |
DevTools: keep links on the edited styles so that they are not collected between debugging sessions.
Review URL: http://codereview.chromium.org/100159
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14844 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webdevtoolsagent_impl.h')
-rw-r--r-- | webkit/glue/webdevtoolsagent_impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/glue/webdevtoolsagent_impl.h b/webkit/glue/webdevtoolsagent_impl.h index a966e28..b6ade47 100644 --- a/webkit/glue/webdevtoolsagent_impl.h +++ b/webkit/glue/webdevtoolsagent_impl.h @@ -10,6 +10,7 @@ #include <wtf/OwnPtr.h> #include <wtf/Vector.h> +#include "v8.h" #include "webkit/glue/devtools/devtools_rpc.h" #include "webkit/glue/devtools/dom_agent.h" #include "webkit/glue/devtools/net_agent.h" @@ -110,6 +111,7 @@ class WebDevToolsAgentImpl OwnPtr<NetAgentImpl> net_agent_impl_; Vector<ConsoleMessage> console_log_; bool attached_; + v8::Persistent<v8::Context> utility_context_; DISALLOW_COPY_AND_ASSIGN(WebDevToolsAgentImpl); }; |