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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #include "config.h" | 31 #include "config.h" |
32 #include "WebSharedWorkerImpl.h" | 32 #include "WebSharedWorkerImpl.h" |
33 | 33 |
34 #include "CrossThreadTask.h" | 34 #include "CrossThreadTask.h" |
35 #include "DatabaseTask.h" | 35 #include "DatabaseTask.h" |
36 #include "Document.h" | 36 #include "Document.h" |
37 #include "FrameLoadRequest.h" | 37 #include "FrameLoadRequest.h" |
38 #include "FrameLoader.h" | 38 #include "FrameLoader.h" |
39 #include "GroupSettings.h" | 39 #include "GroupSettings.h" |
40 #include "KURL.h" | |
41 #include "MessageEvent.h" | 40 #include "MessageEvent.h" |
42 #include "MessagePortChannel.h" | 41 #include "MessagePortChannel.h" |
43 #include "Page.h" | 42 #include "Page.h" |
44 #include "PageGroup.h" | 43 #include "PageGroup.h" |
45 #include "PlatformMessagePortChannelChromium.h" | 44 #include "PlatformMessagePortChannelChromium.h" |
| 45 #include "ScriptExecutionContext.h" |
46 #include "SecurityOrigin.h" | 46 #include "SecurityOrigin.h" |
47 #include "ScriptExecutionContext.h" | |
48 #include "SharedWorkerContext.h" | 47 #include "SharedWorkerContext.h" |
49 #include "SharedWorkerThread.h" | 48 #include "SharedWorkerThread.h" |
50 #include "WebDataSourceImpl.h" | 49 #include "WebDataSourceImpl.h" |
51 #include "WebFrameClient.h" | 50 #include "WebFrameClient.h" |
52 #include "WebFrameImpl.h" | 51 #include "WebFrameImpl.h" |
53 #include "WebRuntimeFeatures.h" | 52 #include "WebRuntimeFeatures.h" |
54 #include "WebSettings.h" | 53 #include "WebSettings.h" |
55 #include "WebSharedWorkerClient.h" | 54 #include "WebSharedWorkerClient.h" |
56 #include "WebView.h" | 55 #include "WebView.h" |
57 #include "WorkerContext.h" | 56 #include "WorkerContext.h" |
58 #include "WorkerDebuggerAgent.h" | 57 #include "WorkerDebuggerAgent.h" |
59 #include "WorkerInspectorController.h" | 58 #include "WorkerInspectorController.h" |
60 #include "WorkerLoaderProxy.h" | 59 #include "WorkerLoaderProxy.h" |
61 #include "WorkerThread.h" | 60 #include "WorkerThread.h" |
| 61 #include "core/platform/KURL.h" |
62 #include <public/WebFileError.h> | 62 #include <public/WebFileError.h> |
63 #include <public/WebMessagePortChannel.h> | 63 #include <public/WebMessagePortChannel.h> |
64 #include <public/WebString.h> | 64 #include <public/WebString.h> |
65 #include <public/WebURL.h> | 65 #include <public/WebURL.h> |
66 #include <wtf/MainThread.h> | 66 #include <wtf/MainThread.h> |
67 | 67 |
68 using namespace WebCore; | 68 using namespace WebCore; |
69 | 69 |
70 namespace WebKit { | 70 namespace WebKit { |
71 | 71 |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(workerThread()); | 455 WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(workerThread()); |
456 } | 456 } |
457 | 457 |
458 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) | 458 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) |
459 { | 459 { |
460 return new WebSharedWorkerImpl(client); | 460 return new WebSharedWorkerImpl(client); |
461 } | 461 } |
462 #endif // ENABLE(SHARED_WORKERS) | 462 #endif // ENABLE(SHARED_WORKERS) |
463 | 463 |
464 } // namespace WebKit | 464 } // namespace WebKit |
OLD | NEW |