| 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_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_ |
| 6 #define WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_ | 6 #define WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_ |
| 7 | 7 |
| 8 #include <wtf/HashSet.h> | 8 #include <wtf/HashSet.h> |
| 9 | 9 |
| 10 #include "v8.h" | 10 #include "v8.h" |
| 11 #include "webkit/glue/devtools/debugger_agent.h" | 11 #include "webkit/glue/devtools/debugger_agent.h" |
| 12 #include "webkit/glue/webdevtoolsagent.h" | |
| 13 | 12 |
| 14 class WebDevToolsAgentImpl; | 13 class WebDevToolsAgentImpl; |
| 15 class WebViewImpl; | 14 class WebViewImpl; |
| 16 | 15 |
| 17 namespace WebCore { | 16 namespace WebCore { |
| 18 class Document; | 17 class Document; |
| 19 class Node; | 18 class Node; |
| 20 class Page; | 19 class Page; |
| 21 class String; | 20 class String; |
| 22 } | 21 } |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 private: | 70 private: |
| 72 WebViewImpl* web_view_impl_; | 71 WebViewImpl* web_view_impl_; |
| 73 DebuggerAgentDelegate* delegate_; | 72 DebuggerAgentDelegate* delegate_; |
| 74 WebDevToolsAgentImpl* webdevtools_agent_; | 73 WebDevToolsAgentImpl* webdevtools_agent_; |
| 75 int profiler_log_position_; | 74 int profiler_log_position_; |
| 76 | 75 |
| 77 DISALLOW_COPY_AND_ASSIGN(DebuggerAgentImpl); | 76 DISALLOW_COPY_AND_ASSIGN(DebuggerAgentImpl); |
| 78 }; | 77 }; |
| 79 | 78 |
| 80 #endif // WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_ | 79 #endif // WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_ |
| OLD | NEW |