| 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 #include "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "Document.h" | 9 #include "Document.h" |
| 10 #include "EventListener.h" | 10 #include "EventListener.h" |
| 11 #include "InspectorBackend.h" | 11 #include "InspectorBackend.h" |
| 12 #include "InspectorController.h" | 12 #include "InspectorController.h" |
| 13 #include "InspectorFrontend.h" | 13 #include "InspectorFrontend.h" |
| 14 #include "InspectorResource.h" | 14 #include "InspectorResource.h" |
| 15 #include "Node.h" | 15 #include "Node.h" |
| 16 #include "Page.h" | 16 #include "Page.h" |
| 17 #include "PlatformString.h" | 17 #include "PlatformString.h" |
| 18 #include "ScriptObject.h" | 18 #include "ScriptObject.h" |
| 19 #include "ScriptState.h" | 19 #include "ScriptState.h" |
| 20 #include "ScriptValue.h" | 20 #include "ScriptValue.h" |
| 21 #include "V8Binding.h" | 21 #include "V8Binding.h" |
| 22 #include "V8Proxy.h" | 22 #include "V8Proxy.h" |
| 23 #include "V8Utilities.h" | 23 #include "V8Utilities.h" |
| 24 #include <wtf/OwnPtr.h> | 24 #include <wtf/OwnPtr.h> |
| 25 #undef LOG | 25 #undef LOG |
| 26 | 26 |
| 27 #include "webkit/api/public/WebDataSource.h" | 27 #include "third_party/WebKit/WebKit/chromium/public/WebDataSource.h" |
| 28 #include "webkit/api/public/WebDevToolsAgentClient.h" | 28 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgentClient.h" |
| 29 #include "webkit/api/public/WebFrame.h" | 29 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" |
| 30 #include "webkit/api/public/WebString.h" | 30 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
| 31 #include "webkit/api/public/WebURL.h" | 31 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" |
| 32 #include "webkit/api/public/WebURLRequest.h" | 32 #include "third_party/WebKit/WebKit/chromium/public/WebURLRequest.h" |
| 33 #include "webkit/api/src/WebFrameImpl.h" | 33 #include "third_party/WebKit/WebKit/chromium/src/WebFrameImpl.h" |
| 34 #include "webkit/api/src/WebViewImpl.h" | 34 #include "third_party/WebKit/WebKit/chromium/src/WebViewImpl.h" |
| 35 #include "webkit/glue/devtools/bound_object.h" | 35 #include "webkit/glue/devtools/bound_object.h" |
| 36 #include "webkit/glue/devtools/debugger_agent_impl.h" | 36 #include "webkit/glue/devtools/debugger_agent_impl.h" |
| 37 #include "webkit/glue/devtools/debugger_agent_manager.h" | 37 #include "webkit/glue/devtools/debugger_agent_manager.h" |
| 38 #include "webkit/glue/glue_util.h" | 38 #include "webkit/glue/glue_util.h" |
| 39 #include "webkit/glue/webdevtoolsagent_impl.h" | 39 #include "webkit/glue/webdevtoolsagent_impl.h" |
| 40 | 40 |
| 41 using WebCore::Document; | 41 using WebCore::Document; |
| 42 using WebCore::InspectorBackend; | 42 using WebCore::InspectorBackend; |
| 43 using WebCore::InspectorController; | 43 using WebCore::InspectorController; |
| 44 using WebCore::InspectorFrontend; | 44 using WebCore::InspectorFrontend; |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 474 webkit_glue::WebStringToString(command), caller_id); | 474 webkit_glue::WebStringToString(command), caller_id); |
| 475 } | 475 } |
| 476 | 476 |
| 477 // static | 477 // static |
| 478 void WebDevToolsAgent::setMessageLoopDispatchHandler( | 478 void WebDevToolsAgent::setMessageLoopDispatchHandler( |
| 479 MessageLoopDispatchHandler handler) { | 479 MessageLoopDispatchHandler handler) { |
| 480 DebuggerAgentManager::SetMessageLoopDispatchHandler(handler); | 480 DebuggerAgentManager::SetMessageLoopDispatchHandler(handler); |
| 481 } | 481 } |
| 482 | 482 |
| 483 } // namespace WebKit | 483 } // namespace WebKit |
| OLD | NEW |