| 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 20 matching lines...) Expand all Loading... |
| 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 "WebCommonWorkerClient.h" | 36 #include "WebCommonWorkerClient.h" |
| 37 #include "WebContentSecurityPolicy.h" | 37 #include "WebContentSecurityPolicy.h" |
| 38 #include "WebFrameClient.h" | 38 #include "WebFrameClient.h" |
| 39 #include "WebSharedWorkerClient.h" | 39 #include "WebSharedWorkerClient.h" |
| 40 #include "WebWorkerBase.h" | 40 #include "WebWorkerBase.h" |
| 41 #include "WorkerLoaderProxy.h" | |
| 42 #include "WorkerObjectProxy.h" | |
| 43 #include "WorkerThread.h" | |
| 44 #include "core/dom/ScriptExecutionContext.h" | 41 #include "core/dom/ScriptExecutionContext.h" |
| 42 #include "core/workers/WorkerLoaderProxy.h" |
| 43 #include "core/workers/WorkerObjectProxy.h" |
| 44 #include "core/workers/WorkerThread.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 |