| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010-2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2010-2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "WebDevToolsAgentImpl.h" | 32 #include "WebDevToolsAgentImpl.h" |
| 33 | 33 |
| 34 #include "InspectorBackendDispatcher.h" | 34 #include "InspectorBackendDispatcher.h" |
| 35 #include "InspectorFrontend.h" | 35 #include "InspectorFrontend.h" |
| 36 #include "InspectorProtocolVersion.h" | 36 #include "InspectorProtocolVersion.h" |
| 37 #include "PageScriptDebugServer.h" | |
| 38 #include "ScriptController.h" | |
| 39 #include "V8Binding.h" | |
| 40 #include "V8Utilities.h" | |
| 41 #include "WebDataSource.h" | 37 #include "WebDataSource.h" |
| 42 #include "WebDevToolsAgentClient.h" | 38 #include "WebDevToolsAgentClient.h" |
| 43 #include "WebFrameImpl.h" | 39 #include "WebFrameImpl.h" |
| 44 #include "WebMemoryUsageInfo.h" | 40 #include "WebMemoryUsageInfo.h" |
| 45 #include "WebViewClient.h" | 41 #include "WebViewClient.h" |
| 46 #include "WebViewImpl.h" | 42 #include "WebViewImpl.h" |
| 43 #include "bindings/v8/PageScriptDebugServer.h" |
| 44 #include "bindings/v8/ScriptController.h" |
| 45 #include "bindings/v8/V8Binding.h" |
| 46 #include "bindings/v8/V8Utilities.h" |
| 47 #include "core/dom/ExceptionCode.h" | 47 #include "core/dom/ExceptionCode.h" |
| 48 #include "core/inspector/InjectedScriptHost.h" | 48 #include "core/inspector/InjectedScriptHost.h" |
| 49 #include "core/inspector/InspectorController.h" | 49 #include "core/inspector/InspectorController.h" |
| 50 #include "core/inspector/InspectorValues.h" | 50 #include "core/inspector/InspectorValues.h" |
| 51 #include "core/loader/cache/MemoryCache.h" | 51 #include "core/loader/cache/MemoryCache.h" |
| 52 #include "core/page/Frame.h" | 52 #include "core/page/Frame.h" |
| 53 #include "core/page/FrameView.h" | 53 #include "core/page/FrameView.h" |
| 54 #include "core/page/Page.h" | 54 #include "core/page/Page.h" |
| 55 #include "core/page/PageGroup.h" | 55 #include "core/page/PageGroup.h" |
| 56 #include "core/platform/graphics/GraphicsContext.h" | 56 #include "core/platform/graphics/GraphicsContext.h" |
| (...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 | 750 |
| 751 WebString WebDevToolsAgent::workerDisconnectedFromWorkerEvent() | 751 WebString WebDevToolsAgent::workerDisconnectedFromWorkerEvent() |
| 752 { | 752 { |
| 753 SerializingFrontendChannel channel; | 753 SerializingFrontendChannel channel; |
| 754 InspectorFrontend::Worker inspector(&channel); | 754 InspectorFrontend::Worker inspector(&channel); |
| 755 inspector.disconnectedFromWorker(); | 755 inspector.disconnectedFromWorker(); |
| 756 return channel.m_message; | 756 return channel.m_message; |
| 757 } | 757 } |
| 758 | 758 |
| 759 } // namespace WebKit | 759 } // namespace WebKit |
| OLD | NEW |