| 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_WEBDEVTOOLSFRONTEND_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_ |
| 6 #define WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_ | 6 #define WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include <wtf/HashMap.h> | 10 #include <wtf/HashMap.h> |
| 11 #include <wtf/Noncopyable.h> | 11 #include <wtf/Noncopyable.h> |
| 12 #include <wtf/OwnPtr.h> | 12 #include <wtf/OwnPtr.h> |
| 13 #include <wtf/RefPtr.h> | 13 #include <wtf/RefPtr.h> |
| 14 | 14 |
| 15 #include "v8.h" | 15 #include "v8.h" |
| 16 #include "webkit/api/public/WebDevToolsFrontend.h" | 16 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsFrontend.h" |
| 17 #include "webkit/glue/devtools/devtools_rpc.h" | 17 #include "webkit/glue/devtools/devtools_rpc.h" |
| 18 | 18 |
| 19 namespace WebCore { | 19 namespace WebCore { |
| 20 class Node; | 20 class Node; |
| 21 class Page; | 21 class Page; |
| 22 class String; | 22 class String; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace WebKit { | 25 namespace WebKit { |
| 26 class WebViewImpl; | 26 class WebViewImpl; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 OwnPtr<BoundObject> debugger_command_executor_obj_; | 87 OwnPtr<BoundObject> debugger_command_executor_obj_; |
| 88 OwnPtr<JsDebuggerAgentBoundObj> debugger_agent_obj_; | 88 OwnPtr<JsDebuggerAgentBoundObj> debugger_agent_obj_; |
| 89 OwnPtr<JsToolsAgentBoundObj> tools_agent_obj_; | 89 OwnPtr<JsToolsAgentBoundObj> tools_agent_obj_; |
| 90 bool loaded_; | 90 bool loaded_; |
| 91 Vector<Vector<String> > pending_incoming_messages_; | 91 Vector<Vector<String> > pending_incoming_messages_; |
| 92 OwnPtr<BoundObject> dev_tools_host_; | 92 OwnPtr<BoundObject> dev_tools_host_; |
| 93 OwnPtr<ToolsAgentNativeDelegateImpl> tools_agent_native_delegate_impl_; | 93 OwnPtr<ToolsAgentNativeDelegateImpl> tools_agent_native_delegate_impl_; |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 #endif // WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_ | 96 #endif // WEBKIT_GLUE_WEBDEVTOOLSFRONTEND_IMPL_H_ |
| OLD | NEW |