OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ |
6 #define WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ | 6 #define WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include <wtf/OwnPtr.h> | 10 #include <wtf/OwnPtr.h> |
11 | 11 |
12 #include "v8.h" | 12 #include "v8.h" |
13 #include "webkit/api/src/WebDevToolsAgentPrivate.h" | 13 #include "third_party/WebKit/WebKit/chromium/src/WebDevToolsAgentPrivate.h" |
14 #include "webkit/glue/devtools/devtools_rpc.h" | 14 #include "webkit/glue/devtools/devtools_rpc.h" |
15 #include "webkit/glue/devtools/apu_agent_delegate.h" | 15 #include "webkit/glue/devtools/apu_agent_delegate.h" |
16 #include "webkit/glue/devtools/tools_agent.h" | 16 #include "webkit/glue/devtools/tools_agent.h" |
17 | 17 |
18 namespace WebCore { | 18 namespace WebCore { |
19 class Document; | 19 class Document; |
20 class Node; | 20 class Node; |
21 class ScriptState; | 21 class ScriptState; |
22 class String; | 22 class String; |
23 } | 23 } |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 bool resource_tracking_was_enabled_; | 118 bool resource_tracking_was_enabled_; |
119 bool attached_; | 119 bool attached_; |
120 // TODO(pfeldman): This should not be needed once GC styles issue is fixed | 120 // TODO(pfeldman): This should not be needed once GC styles issue is fixed |
121 // for matching rules. | 121 // for matching rules. |
122 v8::Persistent<v8::Context> utility_context_; | 122 v8::Persistent<v8::Context> utility_context_; |
123 OwnPtr<BoundObject> devtools_agent_host_; | 123 OwnPtr<BoundObject> devtools_agent_host_; |
124 OwnPtr<WebCore::ScriptState> inspector_frontend_script_state_; | 124 OwnPtr<WebCore::ScriptState> inspector_frontend_script_state_; |
125 }; | 125 }; |
126 | 126 |
127 #endif // WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ | 127 #endif // WEBKIT_GLUE_WEBDEVTOOLSAGENT_IMPL_H_ |
OLD | NEW |