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 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
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 "ExceptionCode.h" | |
35 #include "InjectedScriptHost.h" | 34 #include "InjectedScriptHost.h" |
36 #include "InspectorBackendDispatcher.h" | 35 #include "InspectorBackendDispatcher.h" |
37 #include "InspectorController.h" | 36 #include "InspectorController.h" |
38 #include "InspectorFrontend.h" | 37 #include "InspectorFrontend.h" |
39 #include "InspectorProtocolVersion.h" | 38 #include "InspectorProtocolVersion.h" |
40 #include "InspectorValues.h" | 39 #include "InspectorValues.h" |
41 #include "PageScriptDebugServer.h" | 40 #include "PageScriptDebugServer.h" |
42 #include "ScriptController.h" | 41 #include "ScriptController.h" |
43 #include "V8Binding.h" | 42 #include "V8Binding.h" |
44 #include "V8Utilities.h" | 43 #include "V8Utilities.h" |
45 #include "WebDataSource.h" | 44 #include "WebDataSource.h" |
46 #include "WebDevToolsAgentClient.h" | 45 #include "WebDevToolsAgentClient.h" |
47 #include "WebFrameImpl.h" | 46 #include "WebFrameImpl.h" |
48 #include "WebMemoryUsageInfo.h" | 47 #include "WebMemoryUsageInfo.h" |
49 #include "WebViewClient.h" | 48 #include "WebViewClient.h" |
50 #include "WebViewImpl.h" | 49 #include "WebViewImpl.h" |
| 50 #include "core/dom/ExceptionCode.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" |
57 #include "core/platform/network/ResourceError.h" | 57 #include "core/platform/network/ResourceError.h" |
58 #include "core/platform/network/ResourceRequest.h" | 58 #include "core/platform/network/ResourceRequest.h" |
59 #include "core/platform/network/ResourceResponse.h" | 59 #include "core/platform/network/ResourceResponse.h" |
60 #include "core/rendering/RenderView.h" | 60 #include "core/rendering/RenderView.h" |
(...skipping 689 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 |