| 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 30 matching lines...) Expand all Loading... |
| 41 #include "public/web/WebContentSecurityPolicy.h" | 41 #include "public/web/WebContentSecurityPolicy.h" |
| 42 #include "public/web/WebDevToolsAgentClient.h" | 42 #include "public/web/WebDevToolsAgentClient.h" |
| 43 #include "public/web/WebFrameClient.h" | 43 #include "public/web/WebFrameClient.h" |
| 44 #include "public/web/WebSharedWorkerClient.h" | 44 #include "public/web/WebSharedWorkerClient.h" |
| 45 #include "wtf/RefPtr.h" | 45 #include "wtf/RefPtr.h" |
| 46 #include <memory> | 46 #include <memory> |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class ConsoleMessage; | 50 class ConsoleMessage; |
| 51 class ParentFrameTaskRunners; |
| 51 class WebApplicationCacheHost; | 52 class WebApplicationCacheHost; |
| 52 class WebApplicationCacheHostClient; | 53 class WebApplicationCacheHostClient; |
| 53 class WebLocalFrameImpl; | 54 class WebLocalFrameImpl; |
| 54 class WebServiceWorkerNetworkProvider; | 55 class WebServiceWorkerNetworkProvider; |
| 55 class WebSharedWorkerClient; | 56 class WebSharedWorkerClient; |
| 56 class WebString; | 57 class WebString; |
| 57 class WebURL; | 58 class WebURL; |
| 58 class WebView; | 59 class WebView; |
| 59 class WorkerInspectorProxy; | 60 class WorkerInspectorProxy; |
| 60 class WorkerScriptLoader; | 61 class WorkerScriptLoader; |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 Persistent<ExecutionContext> m_loadingDocument; | 138 Persistent<ExecutionContext> m_loadingDocument; |
| 138 WebView* m_webView; | 139 WebView* m_webView; |
| 139 Persistent<WebLocalFrameImpl> m_mainFrame; | 140 Persistent<WebLocalFrameImpl> m_mainFrame; |
| 140 bool m_askedToTerminate; | 141 bool m_askedToTerminate; |
| 141 | 142 |
| 142 // This one is bound to and used only on the main thread. | 143 // This one is bound to and used only on the main thread. |
| 143 std::unique_ptr<WebServiceWorkerNetworkProvider> m_networkProvider; | 144 std::unique_ptr<WebServiceWorkerNetworkProvider> m_networkProvider; |
| 144 | 145 |
| 145 Persistent<WorkerInspectorProxy> m_workerInspectorProxy; | 146 Persistent<WorkerInspectorProxy> m_workerInspectorProxy; |
| 146 | 147 |
| 148 Persistent<ParentFrameTaskRunners> m_mainThreadTaskRunners; |
| 149 |
| 147 std::unique_ptr<WorkerThread> m_workerThread; | 150 std::unique_ptr<WorkerThread> m_workerThread; |
| 148 | 151 |
| 149 WebSharedWorkerClient* m_client; | 152 WebSharedWorkerClient* m_client; |
| 150 | 153 |
| 151 bool m_pauseWorkerContextOnStart; | 154 bool m_pauseWorkerContextOnStart; |
| 152 bool m_isPausedOnStart; | 155 bool m_isPausedOnStart; |
| 153 | 156 |
| 154 // Kept around only while main script loading is ongoing. | 157 // Kept around only while main script loading is ongoing. |
| 155 RefPtr<WorkerScriptLoader> m_mainScriptLoader; | 158 RefPtr<WorkerScriptLoader> m_mainScriptLoader; |
| 156 | 159 |
| 157 RefPtr<WorkerLoaderProxy> m_loaderProxy; | 160 RefPtr<WorkerLoaderProxy> m_loaderProxy; |
| 158 | 161 |
| 159 WebURL m_url; | 162 WebURL m_url; |
| 160 WebString m_name; | 163 WebString m_name; |
| 161 WebAddressSpace m_creationAddressSpace; | 164 WebAddressSpace m_creationAddressSpace; |
| 162 }; | 165 }; |
| 163 | 166 |
| 164 } // namespace blink | 167 } // namespace blink |
| 165 | 168 |
| 166 #endif // WebSharedWorkerImpl_h | 169 #endif // WebSharedWorkerImpl_h |
| OLD | NEW |