OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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...) Loading... |
31 #include "config.h" | 31 #include "config.h" |
32 #include "WebEmbeddedWorkerImpl.h" | 32 #include "WebEmbeddedWorkerImpl.h" |
33 | 33 |
34 #include "WebDataSourceImpl.h" | 34 #include "WebDataSourceImpl.h" |
35 #include "WebFrameImpl.h" | 35 #include "WebFrameImpl.h" |
36 #include "WebServiceWorkerContextClient.h" | 36 #include "WebServiceWorkerContextClient.h" |
37 #include "WebView.h" | 37 #include "WebView.h" |
38 #include "WebWorkerPermissionClientProxy.h" | 38 #include "WebWorkerPermissionClientProxy.h" |
39 #include "WorkerPermissionClient.h" | 39 #include "WorkerPermissionClient.h" |
40 #include "core/dom/Document.h" | 40 #include "core/dom/Document.h" |
41 #include "core/frame/ContentSecurityPolicyResponseHeaders.h" | |
42 #include "core/loader/FrameLoadRequest.h" | 41 #include "core/loader/FrameLoadRequest.h" |
43 #include "core/loader/SubstituteData.h" | 42 #include "core/loader/SubstituteData.h" |
44 #include "core/workers/WorkerClients.h" | 43 #include "core/workers/WorkerClients.h" |
45 #include "core/workers/WorkerScriptLoader.h" | 44 #include "core/workers/WorkerScriptLoader.h" |
46 #include "core/workers/WorkerScriptLoaderClient.h" | 45 #include "core/workers/WorkerScriptLoaderClient.h" |
47 #include "core/workers/WorkerThreadStartupData.h" | 46 #include "core/workers/WorkerThreadStartupData.h" |
48 #include "platform/NotImplemented.h" | 47 #include "platform/NotImplemented.h" |
49 #include "platform/SharedBuffer.h" | 48 #include "platform/SharedBuffer.h" |
50 #include "wtf/Functional.h" | 49 #include "wtf/Functional.h" |
51 | 50 |
(...skipping 139 matching lines...) Loading... |
191 | 190 |
192 // FIXME: Create WorkerReportingProxy, set up WorkerThreadStartupData, | 191 // FIXME: Create WorkerReportingProxy, set up WorkerThreadStartupData, |
193 // create ServiceWorkerThread and start it with m_scripLoader->script(). | 192 // create ServiceWorkerThread and start it with m_scripLoader->script(). |
194 | 193 |
195 m_mainScriptLoader.clear(); | 194 m_mainScriptLoader.clear(); |
196 | 195 |
197 notImplemented(); | 196 notImplemented(); |
198 } | 197 } |
199 | 198 |
200 } // namespace blink | 199 } // namespace blink |
OLD | NEW |