OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 "WebWorkerClientImpl.h" | 32 #include "WebWorkerClientImpl.h" |
33 | 33 |
34 #include "CrossThreadTask.h" | |
35 #include "DedicatedWorkerThread.h" | 34 #include "DedicatedWorkerThread.h" |
36 #include "Document.h" | |
37 #include "ErrorEvent.h" | |
38 #include "InspectorInstrumentation.h" | 35 #include "InspectorInstrumentation.h" |
39 #include "MessageEvent.h" | |
40 #include "MessagePort.h" | |
41 #include "MessagePortChannel.h" | |
42 #include "ScriptCallStack.h" | 36 #include "ScriptCallStack.h" |
43 #include "ScriptExecutionContext.h" | |
44 #include "Worker.h" | 37 #include "Worker.h" |
45 #include "WorkerContext.h" | 38 #include "WorkerContext.h" |
46 #include "WorkerMessagingProxy.h" | 39 #include "WorkerMessagingProxy.h" |
47 #include "WorkerScriptController.h" | 40 #include "WorkerScriptController.h" |
| 41 #include "core/dom/CrossThreadTask.h" |
| 42 #include "core/dom/Document.h" |
| 43 #include "core/dom/ErrorEvent.h" |
| 44 #include "core/dom/MessageEvent.h" |
| 45 #include "core/dom/MessagePort.h" |
| 46 #include "core/dom/MessagePortChannel.h" |
| 47 #include "core/dom/ScriptExecutionContext.h" |
48 #include "core/loader/FrameLoaderClient.h" | 48 #include "core/loader/FrameLoaderClient.h" |
49 #include "core/page/Frame.h" | 49 #include "core/page/Frame.h" |
50 #include "core/page/GroupSettings.h" | 50 #include "core/page/GroupSettings.h" |
51 #include "core/page/Page.h" | 51 #include "core/page/Page.h" |
52 #include "core/page/PageGroup.h" | 52 #include "core/page/PageGroup.h" |
53 #include <wtf/Threading.h> | 53 #include <wtf/Threading.h> |
54 | 54 |
55 #include "FrameLoaderClientImpl.h" | 55 #include "FrameLoaderClientImpl.h" |
56 #include "PlatformMessagePortChannelChromium.h" | |
57 #include "WebFrameClient.h" | 56 #include "WebFrameClient.h" |
58 #include "WebFrameImpl.h" | 57 #include "WebFrameImpl.h" |
59 #include "WebPermissionClient.h" | 58 #include "WebPermissionClient.h" |
60 #include "WebViewImpl.h" | 59 #include "WebViewImpl.h" |
| 60 #include "core/dom/default/chromium/PlatformMessagePortChannelChromium.h" |
61 #include <public/WebFileSystemCallbacks.h> | 61 #include <public/WebFileSystemCallbacks.h> |
62 #include <public/WebMessagePortChannel.h> | 62 #include <public/WebMessagePortChannel.h> |
63 #include <public/WebString.h> | 63 #include <public/WebString.h> |
64 #include <public/WebURL.h> | 64 #include <public/WebURL.h> |
65 | 65 |
66 using namespace WebCore; | 66 using namespace WebCore; |
67 | 67 |
68 namespace WebKit { | 68 namespace WebKit { |
69 | 69 |
70 // Chromium-specific decorator of WorkerMessagingProxy. | 70 // Chromium-specific decorator of WorkerMessagingProxy. |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 : WebCore::WorkerMessagingProxy(worker) | 153 : WebCore::WorkerMessagingProxy(worker) |
154 , m_webFrame(webFrame) | 154 , m_webFrame(webFrame) |
155 { | 155 { |
156 } | 156 } |
157 | 157 |
158 WebWorkerClientImpl::~WebWorkerClientImpl() | 158 WebWorkerClientImpl::~WebWorkerClientImpl() |
159 { | 159 { |
160 } | 160 } |
161 | 161 |
162 } // namespace WebKit | 162 } // namespace WebKit |
OLD | NEW |