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 15 matching lines...) Expand all Loading... |
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 #ifndef WebSharedWorkerImpl_h | 31 #ifndef WebSharedWorkerImpl_h |
32 #define WebSharedWorkerImpl_h | 32 #define WebSharedWorkerImpl_h |
33 | 33 |
34 #include "WebSharedWorker.h" | 34 #include "WebSharedWorker.h" |
35 | 35 |
36 #include "ScriptExecutionContext.h" | |
37 #include "WebCommonWorkerClient.h" | 36 #include "WebCommonWorkerClient.h" |
38 #include "WebContentSecurityPolicy.h" | 37 #include "WebContentSecurityPolicy.h" |
39 #include "WebFrameClient.h" | 38 #include "WebFrameClient.h" |
40 #include "WebSharedWorkerClient.h" | 39 #include "WebSharedWorkerClient.h" |
41 #include "WebWorkerBase.h" | 40 #include "WebWorkerBase.h" |
42 #include "WorkerLoaderProxy.h" | 41 #include "WorkerLoaderProxy.h" |
43 #include "WorkerObjectProxy.h" | 42 #include "WorkerObjectProxy.h" |
44 #include "WorkerThread.h" | 43 #include "WorkerThread.h" |
| 44 #include "core/dom/ScriptExecutionContext.h" |
45 #include <wtf/PassOwnPtr.h> | 45 #include <wtf/PassOwnPtr.h> |
46 #include <wtf/RefPtr.h> | 46 #include <wtf/RefPtr.h> |
47 | 47 |
48 | 48 |
49 namespace WebKit { | 49 namespace WebKit { |
50 class WebApplicationCacheHost; | 50 class WebApplicationCacheHost; |
51 class WebApplicationCacheHostClient; | 51 class WebApplicationCacheHostClient; |
52 class WebWorkerClient; | 52 class WebWorkerClient; |
53 class WebSecurityOrigin; | 53 class WebSecurityOrigin; |
54 class WebString; | 54 class WebString; |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 | 177 |
178 RefPtr<WebCore::WorkerThread> m_workerThread; | 178 RefPtr<WebCore::WorkerThread> m_workerThread; |
179 | 179 |
180 WebSharedWorkerClient* m_client; | 180 WebSharedWorkerClient* m_client; |
181 bool m_pauseWorkerContextOnStart; | 181 bool m_pauseWorkerContextOnStart; |
182 }; | 182 }; |
183 | 183 |
184 } // namespace WebKit | 184 } // namespace WebKit |
185 | 185 |
186 #endif | 186 #endif |
OLD | NEW |